log4cpp  1.1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PassThroughLayout.hh
Go to the documentation of this file.
1 #if !defined(h_8e4861a3_f607_479c_ac2d_0b2d81b4c36c)
2 #define h_8e4861a3_f607_479c_ac2d_0b2d81b4c36c
3 
4 #include <log4cpp/Layout.hh>
5 
6 namespace log4cpp
7 {
8  class PassThroughLayout : public Layout
9  {
10  public:
11  virtual std::string format(const LoggingEvent& event) { return event.message; }
12  };
13 }
14 
15 #endif // h_8e4861a3_f607_479c_ac2d_0b2d81b4c36c