diff options
| author | Wladimir J. van der Laan <[email protected]> | 2011-06-11 22:11:58 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2011-06-11 22:11:58 +0200 |
| commit | ba4081c1fcaddf361abd61b2721994eff5475bb3 (patch) | |
| tree | 8667eac9e13bde9d006407b55b73bacc830f46e6 /src/qt/transactiondesc.h | |
| parent | Somewhat confident now, tested on GNOME+KDE, with all types of transactions. ... (diff) | |
| download | discoin-ba4081c1fcaddf361abd61b2721994eff5475bb3.tar.xz discoin-ba4081c1fcaddf361abd61b2721994eff5475bb3.zip | |
move back to original directory structure
Diffstat (limited to 'src/qt/transactiondesc.h')
| -rw-r--r-- | src/qt/transactiondesc.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/qt/transactiondesc.h b/src/qt/transactiondesc.h new file mode 100644 index 000000000..5a8594934 --- /dev/null +++ b/src/qt/transactiondesc.h @@ -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 |