From: Christian P. <cp...@us...> - 2005-07-04 06:06:34
|
Update of /cvsroot/pclasses/pclasses2/include/pclasses/App In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4563/include/pclasses/App Modified Files: LogManager.h Log Message: - Added LogManager::initConfig() Index: LogManager.h =================================================================== RCS file: /cvsroot/pclasses/pclasses2/include/pclasses/App/LogManager.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- LogManager.h 1 Jul 2005 12:06:59 -0000 1.3 +++ LogManager.h 4 Jul 2005 06:06:26 -0000 1.4 @@ -33,6 +33,8 @@ namespace App { +class Config; + //! Logging manager /*! The LogManager class provides a container for easy management of @@ -59,6 +61,9 @@ */ ~LogManager() throw(); + //! Initialize logging from configuration + void initFromConfig(Config* cfg); + //! Close and re-open all LogTargets void reload() throw(); |