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.
2021-04-07 00:23:19 +02:00

23 lines
425 B
C++

#ifndef APPDATAHANDLER_H
#define APPDATAHANDLER_H
#include <QObject>
#include "jsonrpc/jsonhandler.h"
class AppDataHandler : public JsonHandler
{
Q_OBJECT
public:
explicit AppDataHandler(QObject *parent = nullptr);
QString name() const override;
Q_INVOKABLE JsonReply *Store(const QVariantMap &params);
Q_INVOKABLE JsonReply *Load(const QVariantMap &params);
signals:
};
#endif // APPDATAHANDLER_H