EEROS  0.4.1.0
API for the EEROS Real-Time Robotics Framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Writer.hpp
Go to the documentation of this file.
1 #ifndef ORG_EEROS_LOGGER_WRITER_HPP_
2 #define ORG_EEROS_LOGGER_WRITER_HPP_
3 
4 namespace eeros
5 {
6  namespace logger
7  {
8  class Writer
9  {
10  public:
11  virtual ~Writer() { }
12  virtual void begin(unsigned level, unsigned category) = 0;
13  virtual void end() = 0;
14  };
15  }
16 }
17 
18 #endif /* ORG_EEROS_LOGGER_WRITER_HPP_ */
virtual void end()=0
virtual void begin(unsigned level, unsigned category)=0
Definition: Writer.hpp:8
virtual ~Writer()
Definition: Writer.hpp:11