1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /*
- * Layout.hh
- *
- * Copyright 2000, LifeLine Networks BV (www.lifeline.nl). All rights reserved.
- * Copyright 2000, Bastiaan Bakker. All rights reserved.
- *
- * See the COPYING file for the terms of usage and distribution.
- */
- #ifndef _LOG4CPP_LAYOUT_HH
- #define _LOG4CPP_LAYOUT_HH
- #include <log4cpp/Portability.hh>
- #include <log4cpp/LoggingEvent.hh>
- #include <string>
- LOG4CPP_NS_BEGIN
- /**
- * Extend this abstract class to create your own log layout format.
- **/
- class LOG4CPP_EXPORT Layout {
- public:
- /**
- * Destructor for Layout.
- **/
- virtual ~Layout() { };
- /**
- * Formats the LoggingEvent data to a string that appenders can log.
- * Implement this method to create your own layout format.
- * @param event The LoggingEvent.
- * @returns an appendable string.
- **/
- virtual std::string format(const LoggingEvent& event) = 0;
- };
- LOG4CPP_NS_END
- #endif // _LOG4CPP_LAYOUT_HH
|