mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2024-11-05 09:35:18 +00:00
22 lines
368 B
C
22 lines
368 B
C
|
#ifndef JSON_SERIALIZER_H
|
||
|
#define JSON_SERIALIZER_H
|
||
|
|
||
|
|
||
|
#include <QList>
|
||
|
#include <QJsonArray>
|
||
|
#include <QJsonObject>
|
||
|
#include <QJsonValue>
|
||
|
#include <QJsonValueRef>
|
||
|
#include <QString>
|
||
|
|
||
|
namespace Jellyfin {
|
||
|
|
||
|
namespace JsonHelper {
|
||
|
void convertToCamelCase(QJsonValueRef val);
|
||
|
QString convertToCamelCaseHelper(const QString &str);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // JSONSERIALIZER_H
|