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