Engauge Digitizer 2
Loading...
Searching...
No Matches
Layout.hh
Go to the documentation of this file.
1#ifndef LAYOUT_HH
2#define LAYOUT_HH
3
4#include <string>
5
6namespace 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
Layout()
Single constructor.
Definition Layout.cpp:5
virtual ~Layout()
Definition Layout.cpp:9
virtual std::string format(const LoggingEvent &event)=0
Noop method that would format an event.
Noop class that mimics the same class in the log4cpp library.