Somewhat confident now, tested on GNOME+KDE, with all types of transactions. Next...
[novacoin.git] / src / qt / transactiondescdialog.h
1 #ifndef TRANSACTIONDESCDIALOG_H
2 #define TRANSACTIONDESCDIALOG_H
3
4 #include <QDialog>
5
6 namespace Ui {
7     class TransactionDescDialog;
8 }
9 QT_BEGIN_NAMESPACE
10 class QModelIndex;
11 QT_END_NAMESPACE
12
13 class TransactionDescDialog : public QDialog
14 {
15     Q_OBJECT
16
17 public:
18     explicit TransactionDescDialog(const QModelIndex &idx, QWidget *parent = 0);
19     ~TransactionDescDialog();
20
21 private:
22     Ui::TransactionDescDialog *ui;
23 };
24
25 #endif // TRANSACTIONDESCDIALOG_H