#include <AnyConfig.h>
Inheritance diagram for AnyConfig::AcWriteableConfig::
Public Methods | |
AcWriteableConfig () | |
Constructor method. More... | |
virtual | ~AcWriteableConfig () |
Destructor method. More... | |
virtual void | setLong (const char *pKey, const long value) |
Set the configuration item to the passed value. More... | |
virtual void | setSectionStr (const char *pSection, const char *pKey, const char *pValue) |
Like setStr() but can set keys in another section than the current one. More... | |
virtual void | setStr (const char *pKey, const char *pValue)=0 |
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... |
|
Constructor method.
|
|
Destructor method.
|
|
Method which must be called first in a constructor.
Reimplemented from AnyConfig::AcConfiguration. Reimplemented in AnyConfig::AcMemConfig, AnyConfig::AcBufFileConfig, AnyConfig::AcEnvConfig, AnyConfig::AcFileConfig, AnyConfig::AcMySQLConfig, and AnyConfig::AcCorbaConfig. |
|
Method which must be called first in a destructor.
Reimplemented from AnyConfig::AcConfiguration. Reimplemented in AnyConfig::AcMemConfig, AnyConfig::AcBufFileConfig, AnyConfig::AcEnvConfig, AnyConfig::AcFileConfig, AnyConfig::AcMySQLConfig, and AnyConfig::AcCorbaConfig. |
|
Set the configuration item to the passed value.
|
|
Like setStr() but can set keys in another section than the current one. The default implementation just pushes _currentSection on stack, replaces it with the supplied section and calls the regular setStr() function.
Reimplemented in AnyConfig::AcMemConfig, AnyConfig::AcEnvConfig, and AnyConfig::AcMySQLConfig. |