2011-05-08 22:23:31 +02:00
|
|
|
#ifndef SENDCOINSDIALOG_H
|
|
|
|
#define SENDCOINSDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
2011-05-12 14:44:52 +02:00
|
|
|
namespace Ui {
|
|
|
|
class SendCoinsDialog;
|
|
|
|
}
|
|
|
|
|
2011-05-08 22:23:31 +02:00
|
|
|
class SendCoinsDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2011-05-12 14:44:52 +02:00
|
|
|
|
2011-05-08 22:23:31 +02:00
|
|
|
public:
|
|
|
|
explicit SendCoinsDialog(QWidget *parent = 0);
|
2011-05-12 14:44:52 +02:00
|
|
|
~SendCoinsDialog();
|
2011-05-08 22:23:31 +02:00
|
|
|
|
2011-05-12 14:44:52 +02:00
|
|
|
private:
|
|
|
|
Ui::SendCoinsDialog *ui;
|
2011-05-08 22:23:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SENDCOINSDIALOG_H
|