You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#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
|
|
|