mirror of
https://github.com/monero-project/monero-gui
synced 2024-12-25 01:53:43 +01:00
17 lines
197 B
C
17 lines
197 B
C
|
#ifndef WALLET_H
|
||
|
#define WALLET_H
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
class Wallet : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit Wallet(QObject *parent = 0);
|
||
|
|
||
|
signals:
|
||
|
|
||
|
public slots:
|
||
|
};
|
||
|
|
||
|
#endif // WALLET_H
|