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.
2018-08-09 14:19:40 +02:00

17 lines
238 B
C++

#ifndef JSONRPCCLIENT_H
#define JSONRPCCLIENT_H
#include <QObject>
class JsonRpcClient : public QObject
{
Q_OBJECT
public:
explicit JsonRpcClient(QObject *parent = nullptr);
signals:
public slots:
};
#endif // JSONRPCCLIENT_H