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