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