123456789101112131415161718192021 |
- #ifndef INFOPLISTPARSER_H
- #define INFOPLISTPARSER_H
- #include "generatoroutputview.h"
- #include "generatordata.h"
- class InfoPlistParser
- {
- public:
- InfoPlistParser(GeneratorOutputView &outputView, GeneratorData &generatorData);
- bool parse();
- private:
- GeneratorOutputView &m_outputView;
- GeneratorData &m_generatorData;
- };
- #endif // INFOPLISTPARSER_H
|