#include <AnyConfig.h>
Inheritance diagram for AnyConfig::AcBufFileConfig::
Public Methods | |
AcBufFileConfig () | |
Constructor method. More... | |
virtual | ~AcBufFileConfig () |
Destructor method. More... | |
virtual void | display () |
Mostly for debugging purposes, display the configuration. More... | |
virtual bool | initialize (AcConfiguration &parentConfig) |
Initialize the configuration using another, probably more primitive, parent configuration. More... | |
virtual bool | initialize (FILE *pF) |
Hack to read from for instance stdin. More... | |
virtual bool | initRequired () |
Returns true if the derived AcConfiguration requires to be initialized. More... | |
virtual void | save () |
Write the buffered configuration to the file. More... | |
const CString& | GetCfgFileName () const |
Returns the value of member '_cfgFileName'. More... | |
void | SetCfgFileName (const CString &rCfgFileName) |
Set the value of member '_cfgFileName' to 'rCfgFileName'. More... | |
Private Methods | |
void | ConstructorInclude () |
Method which must be called first in a constructor. More... | |
void | DestructorInclude () |
Method which must be called first in a destructor. More... | |
Private Attributes | |
CString | _cfgFileName |
|
Constructor method.
|
|
Destructor method.
|
|
Method which must be called first in a constructor.
Reimplemented from AnyConfig::AcMemConfig. |
|
Method which must be called first in a destructor.
Reimplemented from AnyConfig::AcMemConfig. |
|
Returns the value of member '_cfgFileName'.
|
|
Set the value of member '_cfgFileName' to 'rCfgFileName'.
|
|
Mostly for debugging purposes, display the configuration.
Reimplemented from AnyConfig::AcMemConfig. |
|
Returns true if the derived AcConfiguration requires to be initialized. See the initialize() function for the various derived classes for more details. Note that this function must return false once the initialization has been done once. Reimplemented from AnyConfig::AcMemConfig. |
|
Hack to read from for instance stdin.
|
|
Initialize the configuration using another, probably more primitive, parent configuration. The default implementation of this method just returns true.
Reimplemented from AnyConfig::AcConfiguration. |
|
Write the buffered configuration to the file.
|