pollymc/libmultimc/include/fullversionfactory.h

23 lines
519 B
C
Raw Normal View History

2013-07-22 05:31:56 +05:30
#pragma once
#include <QtCore>
struct FullVersion;
class FullVersionFactory
{
public:
enum Error
{
AllOK, // all parsed OK
ParseError, // the file was corrupted somehow
UnsupportedVersion // the file was meant for a launcher version we don't support (yet)
} m_error;
QString error_string;
public:
FullVersionFactory();
QSharedPointer<FullVersion> parse(QByteArray data);
private:
QSharedPointer<FullVersion> parse4(QJsonObject root, QSharedPointer<FullVersion> product);
QStringList legacyWhitelist;
};