Engauge Digitizer  2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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 
7 namespace 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 version that mimics the same class in the log4cpp library.
Definition: Layout.hh:11
virtual void setLayout(Layout *layout)=0
Set the layout for this Appender.
Noop class that mimics the same class in the log4cpp library.
Definition: Appender.hh:7
Noop class that mimics the same class in the log4cpp library.
LayoutAppender(const std::string &)
Single constructor.