appconfigparser.h 400 B

123456789101112131415161718
  1. #ifndef APPCONFIGPARSER_H
  2. #define APPCONFIGPARSER_H
  3. #include <QtCore>
  4. #include <QDomDocument>
  5. #include "SNCCore_global.h"
  6. class SNCCORESHARED_EXPORT AppConfigParser
  7. {
  8. public:
  9. AppConfigParser();
  10. bool readConfig(QString content);
  11. private:
  12. void parseConfigElement(const QDomElement &element);
  13. public:
  14. QString minVer;
  15. QString maxVer;
  16. };
  17. #endif // APPCONFIGPARSER_H