mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-03 17:57:25 -04:00
17 lines
253 B
C++
17 lines
253 B
C++
#ifndef WALLET2SERVICE_H
|
|
#define WALLET2SERVICE_H
|
|
|
|
#include <QObject>
|
|
|
|
class Wallet2Service : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit Wallet2Service(QObject *parent = 0);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
};
|
|
|
|
#endif // WALLET2SERVICE_H
|