Engauge Digitizer  2
 All Classes Functions Variables Typedefs Enumerations Friends Pages
Layout.hh
1 #ifndef LAYOUT_HH
2 #define LAYOUT_HH
3 
4 #include <string>
5 
6 namespace log4cpp {
7 
8  class LoggingEvent;
9 
11  class Layout
12  {
13  public:
15  Layout();
16  virtual ~Layout();
17 
19  virtual std::string format(const LoggingEvent &event) = 0;
20  };
21 }
22 
23 #endif // LAYOUT_HH
Noop class that mimics the same class in the log4cpp library.
Definition: LoggingEvent.hh:10
Noop version that mimics the same class in the log4cpp library.
Definition: Layout.hh:11
virtual std::string format(const LoggingEvent &event)=0
Noop method that would format an event.
Layout()
Single constructor.
Definition: Layout.cpp:5