#ifndef VERSION2UPGRADER_H #define VERSION2UPGRADER_H #include #include #include #include class Version2Upgrader : QObject { Q_OBJECT private: static QJsonObject UpgradeDay(QJsonObject day, bool validate); static QJsonObject UpgradeTemplate(QJsonObject week); static QJsonArray UpgradeWeeks(QJsonArray weeks); public: Version2Upgrader(); static QJsonObject Upgrade(QJsonObject old); }; #endif // VERSION2UPGRADER_H