golib
0.5
|
#include <goconfigfile.h>
Public Member Functions | |
goIndex_t | find (const goString &chaptername) |
bool | add (goString &chaptername) |
bool | add (const char *chapter) |
bool | add (goString &chaptername, goString §ionname, goString &keyname, goString &valuename) |
bool | add (const char *chapter, const char *sectionname, const char *key, const char *value) |
const goString & | get (const goString &chaptername, const goString §ionname, const goString &keyname) |
const goString & | get (const char *chapter, const char *section, const char *key) |
goArray< goConfigFileSection * > & | get (goString &chapter) |
goArray< goConfigFileSection * > & | get (const char *chapter) |
goArray< goConfigFileChapter * > & | getChapterArray () |
bool | fail () |
bool | read (goString &file) |
bool | read (const char *file) |
bool | write (goString &file) |
bool | write (const char *file) |
Protected Attributes | |
bool | last_failed |
goArray< goConfigFileChapter * > | chapters |
goArray< goConfigFileSection * > | dummyChapter |
goString | dummy |
bool | out_chapters |
bool | out_sections |
bool | out_names |
int | out_mode |
"Standard" config file. This is a file which may contain chapters, sections and key/value pairs as follows:
\begin{verbatim}
(CHAPTERNAME) [SECTIONNAME] KEYNAME = VALUE \end{verbatim}
The values are interpreted as strings. If they are not delimited by 's, any blank characters are removed. Upper-/Lowercase characters are distinguished.
|
protected |
Control of output using the operator<< (not yet implemented)
|
protected |
Control of output using the operator<<