32af5266cf
- try to enforce the same style to all Qt related files - remove unneeded includes from the files - add missing Q_OBJECT, QT_BEGIN_NAMESPACE / QT_END_NAMESPACE - prepares for a pull-req to include Qt5 compatibility
25 lines
449 B
C++
25 lines
449 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);
|
|
|
|
private:
|
|
TransactionDesc() {}
|
|
|
|
static QString FormatTxStatus(const CWalletTx& wtx);
|
|
};
|
|
|
|
#endif // TRANSACTIONDESC_H
|