0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-04 10:07:27 -05:00
bitcoin-bitcoin-core/gui/include/transactiondesc.h
2011-06-10 15:05:51 +02:00

15 lines
277 B
C++

#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