mirror of
https://github.com/AskDavis/Casinotest.git
synced 2026-01-08 21:59:47 -08:00
Initial commit.
This commit is contained in:
26
src/qt/transactiondescdialog.h
Normal file
26
src/qt/transactiondescdialog.h
Normal file
@@ -0,0 +1,26 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user