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