24 lines
465 B
C++
24 lines
465 B
C++
#ifndef TRANSACTIONDESC_H
|
|
#define TRANSACTIONDESC_H
|
|
|
|
#include <QString>
|
|
#include <QObject>
|
|
#include <string>
|
|
|
|
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);
|
|
private:
|
|
TransactionDesc() {}
|
|
|
|
static QString FormatTxStatus(const CWalletTx& wtx);
|
|
};
|
|
|
|
#endif // TRANSACTIONDESC_H
|