DCMTK
Version 3.6.7
OFFIS DICOM Toolkit
|
This header defines Filter and all of it's subclasses. More...
Classes | |
class | dcmtk::log4cplus::spi::Filter |
Users should extend this class to implement customized logging event filtering. More... | |
class | dcmtk::log4cplus::spi::DenyAllFilter |
This filter drops all logging events. More... | |
class | dcmtk::log4cplus::spi::LogLevelMatchFilter |
This is a very simple filter based on LogLevel matching. More... | |
class | dcmtk::log4cplus::spi::LogLevelRangeFilter |
This is a very simple filter based on LogLevel matching, which can be used to reject messages with LogLevels outside a certain range. More... | |
class | dcmtk::log4cplus::spi::StringMatchFilter |
This is a very simple filter based on string matching. More... | |
Enumerations | |
enum | dcmtk::log4cplus::spi::FilterResult { dcmtk::log4cplus::spi::DENY , dcmtk::log4cplus::spi::NEUTRAL , dcmtk::log4cplus::spi::ACCEPT } |
Functions | |
DCMTK_LOG4CPLUS_EXPORT FilterResult | dcmtk::log4cplus::spi::checkFilter (const Filter *filter, const InternalLoggingEvent &event) |
This method is used to filter an InternalLoggingEvent. More... | |
This header defines Filter and all of it's subclasses.
The possible results a filter can give
DCMTK_LOG4CPLUS_EXPORT FilterResult dcmtk::log4cplus::spi::checkFilter | ( | const Filter * | filter, |
const InternalLoggingEvent & | event | ||
) |
This method is used to filter an InternalLoggingEvent.
filter | the filter to be applied to the event |
event | the event where the filter is applied on |
filter
can be NULL.