0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-05 10:17:30 -05:00
bitcoin-bitcoin-core/src/qt/transactiondesc.h
2013-09-06 12:12:18 +02:00

25 lines
469 B
C++

#ifndef TRANSACTIONDESC_H
#define TRANSACTIONDESC_H
#include <QString>
#include <QObject>
class CWallet;
class CWalletTx;
/** Provide a human-readable extended HTML description of a transaction.
*/
class TransactionDesc: public QObject
{
Q_OBJECT
public:
static QString toHTML(CWallet *wallet, CWalletTx &wtx, int vout, int unit);
private:
TransactionDesc() {}
static QString FormatTxStatus(const CWalletTx& wtx);
};
#endif // TRANSACTIONDESC_H