mirror of
https://github.com/GOSTSec/gostcoin
synced 2025-01-16 01:30:00 +00:00
28 lines
498 B
C
28 lines
498 B
C
|
#ifndef TRANSACTIONDESCDIALOG_H
|
||
|
#define TRANSACTIONDESCDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class TransactionDescDialog;
|
||
|
}
|
||
|
|
||
|
QT_BEGIN_NAMESPACE
|
||
|
class QModelIndex;
|
||
|
QT_END_NAMESPACE
|
||
|
|
||
|
/** Dialog showing transaction details. */
|
||
|
class TransactionDescDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit TransactionDescDialog(const QModelIndex &idx, QWidget *parent = 0);
|
||
|
~TransactionDescDialog();
|
||
|
|
||
|
private:
|
||
|
Ui::TransactionDescDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // TRANSACTIONDESCDIALOG_H
|