mirror of
https://github.com/dashpay/dash.git
synced 2024-12-29 05:49:11 +01:00
19 lines
244 B
C
19 lines
244 B
C
|
#ifndef SENDCOINSDIALOG_H
|
||
|
#define SENDCOINSDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
class SendCoinsDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit SendCoinsDialog(QWidget *parent = 0);
|
||
|
|
||
|
signals:
|
||
|
|
||
|
public slots:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // SENDCOINSDIALOG_H
|