Update CMakeLists.txt - play with openssl
[novacoin.git] / src / qt / transactiondesc.h
1 #ifndef TRANSACTIONDESC_H
2 #define TRANSACTIONDESC_H
3
4 #include <QString>
5 #include <QObject>
6 #include <string>
7
8 class CWallet;
9 class CWalletTx;
10
11 /** Provide a human-readable extended HTML description of a transaction.
12  */
13 class TransactionDesc: public QObject
14 {
15     Q_OBJECT
16 public:
17     static QString toHTML(CWallet *wallet, CWalletTx &wtx);
18 private:
19     TransactionDesc() {}
20
21     static QString FormatTxStatus(const CWalletTx& wtx);
22 };
23
24 #endif // TRANSACTIONDESC_H