1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /*
- * AbortAppender.hh
- *
- * Copyright 2002, LifeLine Networks BV (www.lifeline.nl). All rights reserved.
- * Copyright 2002, Bastiaan Bakker. All rights reserved.
- *
- * See the COPYING file for the terms of usage and distribution.
- */
- #ifndef _LOG4CPP_ABORTAPPENDER_HH
- #define _LOG4CPP_ABORTAPPENDER_HH
- #include <log4cpp/Portability.hh>
- #include <log4cpp/AppenderSkeleton.hh>
- LOG4CPP_NS_BEGIN
- /**
- * This Appender causes the application to abort() upon the first append()
- * call.
- *
- * @since 0.3.5
- **/
- class LOG4CPP_EXPORT AbortAppender : public AppenderSkeleton {
- public:
- AbortAppender(const std::string& name);
- virtual ~AbortAppender();
- virtual bool reopen();
- virtual void close();
- /**
- * The AbortAppender does not layout.
- * @returns false
- **/
- virtual bool requiresLayout() const;
- virtual void setLayout(Layout* layout);
- protected:
- virtual void _append(const LoggingEvent& event);
- };
- LOG4CPP_NS_END
- #endif // _LOG4CPP_ABORTAPPENDER_HH
|