19 lines
251 B
C++
19 lines
251 B
C++
#ifndef JSONSERIALIZER_H
|
|
#define JSONSERIALIZER_H
|
|
|
|
#include <QObject>
|
|
|
|
class JsonSerializer : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit JsonSerializer(QObject *parent = 0);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
};
|
|
|
|
#endif // JSONSERIALIZER_H
|