Feathercoin  0.5.0
P2P Digital Currency
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
transactiondesc.h
Go to the documentation of this file.
1 #ifndef TRANSACTIONDESC_H
2 #define TRANSACTIONDESC_H
3 
4 #include <QString>
5 #include <QObject>
6 
7 class CWallet;
8 class CWalletTx;
9 
12 class TransactionDesc: public QObject
13 {
14  Q_OBJECT
15 
16 public:
17  static QString toHTML(CWallet *wallet, CWalletTx &wtx);
18 
19 private:
21 
22  static QString FormatTxStatus(const CWalletTx& wtx);
23 };
24 
25 #endif // TRANSACTIONDESC_H
static QString toHTML(CWallet *wallet, CWalletTx &wtx)
Provide a human-readable extended HTML description of a transaction.
A transaction with a bunch of additional info that only the owner cares about.
Definition: wallet.h:367
A CWallet is an extension of a keystore, which also maintains a set of transactions and balances...
Definition: wallet.h:69
static QString FormatTxStatus(const CWalletTx &wtx)