mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-02-03 11:36:28 +00:00
17 lines
232 B
C
17 lines
232 B
C
|
#ifndef WALLETMANAGER_H
|
||
|
#define WALLETMANAGER_H
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
class WalletManager : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit WalletManager(QObject *parent = 0);
|
||
|
|
||
|
signals:
|
||
|
|
||
|
public slots:
|
||
|
};
|
||
|
|
||
|
#endif // WALLETMANAGER_H
|