22Properties::Properties()
30 if (fileSystem ==
nullptr) fileSystem = FileSystem::getInstance();
32 for (
auto i = 0; i < lines.size(); i++) {
35 auto separatorPos = line.find(
'=');
36 if (separatorPos == -1)
continue;
44 vector<string> result;
47 string key = it->first;
48 string value = it->second;
49 result.push_back(key +
"=" + value);
51 if (fileSystem ==
nullptr) fileSystem = FileSystem::getInstance();
File system singleton class.
Properties class, which helps out with storeing or loading key value pairs from/to property files.
map< string, string > properties
void load(const string &pathName, const string &fileName, FileSystemInterface *fileSystem=nullptr)
Load property file.
void store(const string &pathName, const string &fileName, FileSystemInterface *fileSystem=nullptr) const
Store property file.
virtual void setContentFromStringArray(const string &pathName, const string &fileName, const vector< string > &content)=0
Set file content as string array.
virtual void getContentAsStringArray(const string &pathName, const string &fileName, vector< string > &content)=0
Get file content as string array.