update core to d0d80170a2ca73004e08fb85007fe055cbf4e411 (CWallet class)
[novacoin.git] / src / qt / transactiondesc.h
1 #ifndef TRANSACTIONDESC_H
2 #define TRANSACTIONDESC_H
3
4 #include <string>
5
6 class CWallet;
7 class CWalletTx;
8
9 class TransactionDesc
10 {
11 public:
12     /* Provide human-readable extended HTML description of a transaction */
13     static std::string toHTML(CWallet *wallet, CWalletTx &wtx);
14 };
15
16 #endif // TRANSACTIONDESC_H