| DCMTK Version 3.6.9
    OFFIS DICOM Toolkit | 
This class is used to "manage" LogLevel definitions. More...
| Classes | |
| struct | LogLevelToStringMethodRec | 
| union | LogLevelToStringMethodRec.__unnamed0__ | 
| Public Member Functions | |
| log4cplus::tstring const & | toString (LogLevel ll) const | 
| This method is called by all Layout classes to convert a LogLevel into a string. | |
| LogLevel | fromString (const log4cplus::tstring &s) const | 
| This method is called by all classes internally to log4cplus to convert a string into a LogLevel. | |
| void | pushToStringMethod (LogLevelToStringMethod newToString) | 
| When creating a "derived" LogLevel, a LogLevelToStringMethodshould be defined and registered with the LogLevelManager by calling this method. | |
| void | pushToStringMethod (LogLevelToStringMethod_1_0 newToString) | 
| For compatibility with log4cplus 1.0.x. | |
| void | pushFromStringMethod (StringToLogLevelMethod newFromString) | 
| When creating a "derived" LogLevel, a StringToLogLevelMethodshould be defined and registered with the LogLevelManager by calling this method. | |
This class is used to "manage" LogLevel definitions.
This class is also how "derived" LogLevels are created. Here are the steps to creating a "derived" LogLevel:
| struct dcmtk::log4cplus::LogLevelManager::LogLevelToStringMethodRec | 
| union dcmtk::log4cplus::LogLevelManager::LogLevelToStringMethodRec.__unnamed0__ | 
| LogLevel dcmtk::log4cplus::LogLevelManager::fromString | ( | const log4cplus::tstring & | s | ) | const | 
This method is called by all classes internally to log4cplus to convert a string into a LogLevel.
Note: It traverses the list of StringToLogLevelMethod to do this, so all "derived" LogLevels are recognized as well. 
| void dcmtk::log4cplus::LogLevelManager::pushFromStringMethod | ( | StringToLogLevelMethod | newFromString | ) | 
When creating a "derived" LogLevel, a StringToLogLevelMethod should be defined and registered with the LogLevelManager by calling this method. 
| void dcmtk::log4cplus::LogLevelManager::pushToStringMethod | ( | LogLevelToStringMethod | newToString | ) | 
When creating a "derived" LogLevel, a LogLevelToStringMethod should be defined and registered with the LogLevelManager by calling this method. 
| log4cplus::tstring const & dcmtk::log4cplus::LogLevelManager::toString | ( | LogLevel | ll | ) | const | 
This method is called by all Layout classes to convert a LogLevel into a string.
Note: It traverses the list of LogLevelToStringMethod to do this, so all "derived" LogLevels are recognized as well.