mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 21:12:48 +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
|