YAPOG  0.0.1
Yet Another Pokemon Online Game
DebugLogger.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_DEBUGLOGGER_HPP
2 # define YAPOG_DEBUGLOGGER_HPP
3 
4 # include "YAPOG/Macros.hpp"
6 
7 namespace yap
8 {
9  class YAPOG_LIB DebugLogger : public Logger
10  {
12 
13  public:
14 
15  static DebugLogger& Instance ();
16 
17  virtual void Accept (IWriterVisitor& visitor);
18  virtual void Accept (IWriterConstVisitor& visitor) const;
19 
20  private:
21 
22  DebugLogger ();
23  virtual ~DebugLogger ();
24  };
25 } // namespace yap
26 
27 #endif // YAPOG_DEBUGLOGGER_HPP