mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-10 07:08:07 +00:00
26 lines
613 B
C++
26 lines
613 B
C++
#ifndef TRANSACTIONDESC_H
|
|
#define TRANSACTIONDESC_H
|
|
|
|
#include <QString>
|
|
#include <QObject>
|
|
#include <string>
|
|
|
|
class CWallet;
|
|
class CWalletTx;
|
|
|
|
class TransactionDesc: public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
// Provide human-readable extended HTML description of a transaction
|
|
static QString toHTML(CWallet *wallet, CWalletTx &wtx);
|
|
private:
|
|
TransactionDesc() {}
|
|
|
|
static QString HtmlEscape(const QString& str, bool fMultiLine=false);
|
|
static QString HtmlEscape(const std::string &str, bool fMultiLine=false);
|
|
static QString FormatTxStatus(const CWalletTx& wtx);
|
|
};
|
|
|
|
#endif // TRANSACTIONDESC_H
|