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-core/hive/libhive/jsonhandler.h
2013-08-24 12:52:38 +02:00

27 lines
342 B
C++

#ifndef JSONHANDLER_H
#define JSONHANDLER_H
#include <QObject>
class JsonHandler : public QObject
{
Q_OBJECT
public:
explicit JsonHandler(QObject *parent = 0);
private:
signals:
void notifyAll(const QByteArray &data);
public slots:
QByteArray process(const QByteArray &data);
};
#endif // JSONHANDLER_H