mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-15 12:56:35 +02: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
|