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.
powersync-app/backend/jsonrpc/configurationhandler.h
2017-06-08 10:28:54 +02:00

22 lines
330 B
C++

#ifndef CONFIGURATIONHANDLER_H
#define CONFIGURATIONHANDLER_H
#include <QObject>
#include "jsonhandler.h"
class ConfigurationHandler : public JsonHandler
{
Q_OBJECT
public:
explicit ConfigurationHandler(QObject *parent = 0);
QString nameSpace() const;
signals:
public slots:
};
#endif // CONFIGURATIONHANDLER_H