mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-07 12:06:58 +03:00
* Updated the web Installer page, removed all redudnant files in the docs folder, updated the main README * . * consolidate the 2 identical ZerlegeZeile() function and move it to Helper.cpp and add workaround for whitespace and equal sign in password fields * remove redundant code in HelperZerlegeZeile() * Updated the web Installer page, removed all redudnant files in the docs folder, updated the main README * . * consolidate the 2 identical ZerlegeZeile() function and move it to Helper.cpp and add workaround for whitespace and equal sign in password fields * remove redundant code in HelperZerlegeZeile()
15 lines
344 B
C++
15 lines
344 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);
|
|
|
|
private:
|
|
FILE* pFile;
|
|
}; |