| 123456789101112131415161718 |
- #ifndef APPCONFIGPARSER_H
- #define APPCONFIGPARSER_H
- #include <QtCore>
- #include <QDomDocument>
- #include "SNCCore_global.h"
- class SNCCORESHARED_EXPORT AppConfigParser
- {
- public:
- AppConfigParser();
- bool readConfig(QString content);
- private:
- void parseConfigElement(const QDomElement &element);
- public:
- QString minVer;
- QString maxVer;
- };
- #endif // APPCONFIGPARSER_H
|