DCMTK
Version 3.6.1 20170228
OFFIS DICOM Toolkit
|
This is a very simple filter based on string matching. More...
Public Member Functions | |
virtual FilterResult | decide (const InternalLoggingEvent &event) const |
Returns NEUTRAL is there is no string match. | |
![]() | |
void | appendFilter (FilterPtr filter) |
Appends filter to the end of this filter chain. | |
Private Attributes | |
bool | acceptOnMatch |
Do we return ACCEPT when a match occurs. More... | |
Additional Inherited Members | |
![]() | |
FilterPtr | next |
Points to the next filter in the filter chain. | |
This is a very simple filter based on string matching.
The filter admits two options StringToMatch and AcceptOnMatch. If there is a match between the value of the StringToMatch option and the message of the Logging event, then the decide method returns ACCEPT if the AcceptOnMatch option value is true, if it is false then DENY is returned. If there is no match, NEUTRAL is returned.
|
private |
Do we return ACCEPT when a match occurs.
Default is true
.