transaction details dialog on doubleclick

This commit is contained in:
Wladimir J. van der Laan
2011-06-10 15:05:51 +02:00
parent 8e86dca256
commit 66d536ed07
11 changed files with 486 additions and 13 deletions

View File

@@ -0,0 +1,15 @@
#ifndef TRANSACTIONDESC_H
#define TRANSACTIONDESC_H
#include <string>
class CWalletTx;
class TransactionDesc
{
public:
/* Provide human-readable extended HTML description of a transaction */
static std::string toHTML(CWalletTx &wtx);
};
#endif // TRANSACTIONDESC_H