mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-22 10:44:46 +00:00
24 lines
610 B
C++
24 lines
610 B
C++
#ifndef TRANSFER_H
|
|
#define TRANSFER_H
|
|
|
|
#include <wallet/wallet2_api.h>
|
|
#include <QObject>
|
|
|
|
class Transfer : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY(quint64 amount READ amount)
|
|
Q_PROPERTY(QString address READ address)
|
|
private:
|
|
explicit Transfer(uint64_t _amount, const QString &_address, QObject *parent = 0): QObject(parent), m_amount(_amount), m_address(_address) {};
|
|
private:
|
|
friend class TransactionInfo;
|
|
quint64 m_amount;
|
|
QString m_address;
|
|
public:
|
|
quint64 amount() const { return m_amount; }
|
|
QString address() const { return m_address; }
|
|
|
|
};
|
|
|
|
#endif // TRANSACTIONINFO_H
|