mirror of
https://github.com/AskDavis/Casinotest.git
synced 2026-01-07 05:19:47 -08:00
Initial commit.
This commit is contained in:
24
src/qt/transactiondesc.h
Normal file
24
src/qt/transactiondesc.h
Normal file
@@ -0,0 +1,24 @@
|
||||
#ifndef TRANSACTIONDESC_H
|
||||
#define TRANSACTIONDESC_H
|
||||
|
||||
#include <QString>
|
||||
#include <QObject>
|
||||
#include <string>
|
||||
|
||||
class CWallet;
|
||||
class CWalletTx;
|
||||
|
||||
/** Provide a human-readable extended HTML description of a transaction.
|
||||
*/
|
||||
class TransactionDesc: public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
static QString toHTML(CWallet *wallet, CWalletTx &wtx);
|
||||
private:
|
||||
TransactionDesc() {}
|
||||
|
||||
static QString FormatTxStatus(const CWalletTx& wtx);
|
||||
};
|
||||
|
||||
#endif // TRANSACTIONDESC_H
|
||||
Reference in New Issue
Block a user