infoplistparser.h 393 B

123456789101112131415161718192021
  1. #ifndef INFOPLISTPARSER_H
  2. #define INFOPLISTPARSER_H
  3. #include "generatoroutputview.h"
  4. #include "generatordata.h"
  5. class InfoPlistParser
  6. {
  7. public:
  8. InfoPlistParser(GeneratorOutputView &outputView, GeneratorData &generatorData);
  9. bool parse();
  10. private:
  11. GeneratorOutputView &m_outputView;
  12. GeneratorData &m_generatorData;
  13. };
  14. #endif // INFOPLISTPARSER_H