YAPOG  0.0.1
Yet Another Pokemon Online Game
PokemonInfoReader.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_CLIENT_POKEMONINFOREADER_HPP
2 # define YAPOG_CLIENT_POKEMONINFOREADER_HPP
3 
4 # include "YAPOG/Macros.hpp"
6 
7 namespace ycl
8 {
9  class PokemonInfo;
10 
12  {
14 
15  public:
16  PokemonInfoReader (PokemonInfo& pokeInfo);
17  PokemonInfoReader (PokemonInfo& map, const yap::String& xmlRootNodeName);
18  virtual ~PokemonInfoReader ();
19 
20  virtual void Visit (yap::XmlReader& visitable);
21  private:
23  };
24 } // namespace ycl
25 
26 #endif // YAPOG_CLIENT_POKEMONINFOREADER_HPP
27