summaryrefslogtreecommitdiffstats
path: root/api/logic/meta/format/Format.h
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2017-03-17 01:48:54 +0100
committerPetr Mrázek <peterix@gmail.com>2017-04-07 00:20:01 +0200
commit0060b506257b906d40ef53d1e23404dba76afcee (patch)
tree19060c5a8d6525bbed6a91afa249a17e678e37fa /api/logic/meta/format/Format.h
parent40cf38bc3225c614e7e81d074f890e6f9da0507b (diff)
downloadMultiMC-0060b506257b906d40ef53d1e23404dba76afcee.tar
MultiMC-0060b506257b906d40ef53d1e23404dba76afcee.tar.gz
MultiMC-0060b506257b906d40ef53d1e23404dba76afcee.tar.lz
MultiMC-0060b506257b906d40ef53d1e23404dba76afcee.tar.xz
MultiMC-0060b506257b906d40ef53d1e23404dba76afcee.zip
NOISSUE simplify.
Diffstat (limited to 'api/logic/meta/format/Format.h')
-rw-r--r--api/logic/meta/format/Format.h23
1 files changed, 3 insertions, 20 deletions
diff --git a/api/logic/meta/format/Format.h b/api/logic/meta/format/Format.h
index 79605a6f..aaed07fc 100644
--- a/api/logic/meta/format/Format.h
+++ b/api/logic/meta/format/Format.h
@@ -33,25 +33,8 @@ public:
using Exception::Exception;
};
-class Format
-{
-public:
- virtual ~Format() {}
-
- static void parseIndex(const QJsonObject &obj, Index *ptr);
- static void parseVersion(const QJsonObject &obj, Version *ptr);
- static void parseVersionList(const QJsonObject &obj, VersionList *ptr);
+void parseIndex(const QJsonObject &obj, Index *ptr);
+void parseVersion(const QJsonObject &obj, Version *ptr);
+void parseVersionList(const QJsonObject &obj, VersionList *ptr);
- static QJsonObject serializeIndex(const Index *ptr);
- static QJsonObject serializeVersion(const Version *ptr);
- static QJsonObject serializeVersionList(const VersionList *ptr);
-
-protected:
- virtual BaseEntity::Ptr parseIndexInternal(const QJsonObject &obj) const = 0;
- virtual BaseEntity::Ptr parseVersionInternal(const QJsonObject &obj) const = 0;
- virtual BaseEntity::Ptr parseVersionListInternal(const QJsonObject &obj) const = 0;
- virtual QJsonObject serializeIndexInternal(const Index *ptr) const = 0;
- virtual QJsonObject serializeVersionInternal(const Version *ptr) const = 0;
- virtual QJsonObject serializeVersionListInternal(const VersionList *ptr) const = 0;
-};
}