YAPOG  0.0.1
Yet Another Pokemon Online Game
BaseWriterVisitor.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_BASEWRITERVISITOR_HPP
2 # define YAPOG_BASEWRITERVISITOR_HPP
3 
4 # include "YAPOG/Macros.hpp"
6 
7 namespace yap
8 {
10  {
12 
13  public:
14 
15  virtual ~BaseWriterVisitor ();
16 
19  virtual void Visit (XmlWriter& visitable);
20  virtual void Visit (DebugLogger& visitable);
21  virtual void Visit (DatabaseLogger& visitable);
22  virtual void Visit (IPacket& visitable);
23  virtual void Visit (DatabaseStream& visitable);
25 
26  protected:
27 
29  };
30 } // namespace yap
31 
32 #endif // YAPOG_BASEWRITERVISITOR_HPP