Engauge Digitizer 2
Loading...
Searching...
No Matches
LayoutAppender.hh
Go to the documentation of this file.
1#ifndef LAYOUT_APPENDER_HH
2#define LAYOUT_APPENDER_HH
3
4#include "log4cpp/Appender.hh"
5#include <string>
6
7namespace log4cpp {
8
9 class Layout;
10
12 class LayoutAppender : public Appender
13 {
14 public:
16 LayoutAppender(const std::string &);
17 virtual ~LayoutAppender();
18
20 virtual void setLayout(Layout *layout) = 0;
21 };
22}
23
24#endif // LAYOUT_APPENDER_HH
Noop class that mimics the same class in the log4cpp library.
Definition Appender.hh:8
LayoutAppender(const std::string &)
Single constructor.
virtual void setLayout(Layout *layout)=0
Set the layout for this Appender.
Noop version that mimics the same class in the log4cpp library.
Definition Layout.hh:12