10 #ifndef _LOG4CPP_APPENDERSKELETON_HH
11 #define _LOG4CPP_APPENDERSKELETON_HH
50 virtual bool reopen();
56 virtual void close() = 0;
63 virtual bool requiresLayout()
const = 0;
69 virtual void setLayout(
Layout* layout) = 0;
88 virtual void setFilter(
Filter* filter);
94 virtual Filter* getFilter();
111 #endif // _LOG4CPP_APPENDERSKELETON_HH
Users should extend this class to implement customized logging event filtering.
Definition: Filter.hh:49
AppenderSkeleton is a helper class, simplifying implementation of Appenders: it already takes care of...
Definition: AppenderSkeleton.hh:24
Extend this abstract class to create your own log layout format.
Definition: Layout.hh:22
#define LOG4CPP_EXPORT
Definition: Export.hh:19
The top level namespace for all 'Log for C++' types and classes.
Definition: AbortAppender.hh:16
The internal representation of logging events.
Definition: LoggingEvent.hh:32
int Value
The type of Priority Values.
Definition: Priority.hh:85
Implement this interface for your own strategies for printing log statements.
Definition: Appender.hh:33