libconfigfile: allow configfiles with another delimiter as '='

Origin commit data
------------------
Branch: ni/coolstream
Commit: f9515444f0
Author: vanhofen <vanhofen@gmx.de>
Date: 2013-11-08 (Fri, 08 Nov 2013)

Origin message was:
------------------
- libconfigfile: allow configfiles with another delimiter as '='

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2013-11-08 15:06:05 +01:00
parent d1fa33d22a
commit 801b866b98
2 changed files with 12 additions and 12 deletions

View File

@@ -50,11 +50,11 @@ class CConfigFile
public:
CConfigFile(const char p_delimiter, const bool p_saveDefaults = true);
bool loadConfig(const char * const filename);
bool loadConfig(const std::string & filename);
bool loadConfig(const char * const filename, char _delimiter = '=');
bool loadConfig(const std::string & filename, char _delimiter = '=');
bool saveConfig(const char * const filename);
bool saveConfig(const std::string & filename);
bool saveConfig(const char * const filename, char _delimiter = '=');
bool saveConfig(const std::string & filename, char _delimiter = '=');
void clear();