configFile.h 344 B

123456789101112131415
  1. #include <string>
  2. #include <vector>
  3. class ConfigFile {
  4. public:
  5. ConfigFile(std::string filePath);
  6. ~ConfigFile();
  7. bool isNewParagraph(std::string input);
  8. bool GetNextParagraph(std::string& aktparamgraph, bool &disabled, bool &eof);
  9. bool getNextLine(std::string* rt, bool &disabled, bool &eof);
  10. private:
  11. FILE* pFile;
  12. };