add export functionality for address book / receiving addresses
[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