mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-07 12:06:58 +03:00
16 lines
440 B
C++
16 lines
440 B
C++
#include <string>
|
|
#include <vector>
|
|
|
|
class ConfigFile {
|
|
public:
|
|
ConfigFile(std::string filePath);
|
|
~ConfigFile();
|
|
|
|
bool isNewParagraph(std::string input);
|
|
bool GetNextParagraph(std::string& aktparamgraph, bool &disabled, bool &eof);
|
|
bool getNextLine(std::string* rt, bool &disabled, bool &eof);
|
|
std::vector<std::string> ZerlegeZeile(std::string input, std::string delimiter = " =, \t");
|
|
|
|
private:
|
|
FILE* pFile;
|
|
}; |