YAPOG  0.0.1
Yet Another Pokemon Online Game
WorldObjectReader.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_WORLDOBJECTREADER_HPP
2 # define YAPOG_WORLDOBJECTREADER_HPP
3 
4 # include "YAPOG/Macros.hpp"
6 # include "YAPOG/System/String.hpp"
7 
8 namespace yap
9 {
10  class WorldObject;
11 
13  {
15 
16  public:
17 
18  virtual ~WorldObjectReader ();
19 
20  virtual void Visit (XmlReader& visitable);
21 
22  protected:
23 
25  WorldObject& worldObject,
26  const String& xmlRootNodeName);
27 
29 
30  private:
31 
33  };
34 } // namespace yap
35 
36 #endif // YAPOG_WORLDOBJECTREADER_HPP