This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2020-02-26 16:12:54 +01:00

24 lines
440 B
C++

#ifndef USERSMANAGER_H
#define USERSMANAGER_H
#include <QObject>
#include "jsonrpc/jsonrpcclient.h"
class UsersManager: public JsonHandler
{
Q_OBJECT
public:
explicit UsersManager(JsonRpcClient *client, QObject *parent = nullptr);
QString nameSpace() const override;
private slots:
void notificationReceived(const QVariantMap &data);
private:
JsonRpcClient *m_jsonRpcClient = nullptr;
};
#endif // USERSMANAGER_H