Library: Net Responsibility
Package: Core
Header: ConfigSubsystem.h
ConfigSubsystem is a Subsystem that takes care of the configuration. It will only do anything if one of the arguments —config or —install is specified.
Direct Base Classes: Poco::Util::Subsystem
All Base Classes: Poco::RefCountedObject, Poco::Util::Subsystem
Member Functions: getLogin, initialize, name, reinitialize, uninitialize
Inherited Functions: defineOptions, duplicate, initialize, name, referenceCount, reinitialize, release, uninitialize
const char * name() const;
See also: Poco::Util::Subsystem::name()
void reinitialize(
Application & app
);
See also: Poco::Util::Subsystem::reinitialize()
void getLogin(
string & username,
string & password
);
Get the username and password through std::cin. This is not neccessary if —username=X and —password=Y are given as arguments.
void initialize(
Application & self
);
See also: Poco::Util::Subsystem::initialize()
void uninitialize();
See also: Poco::Util::Subsystem::uninitialize()
Logger * _logger;