YAPOG  0.0.1
Yet Another Pokemon Online Game
SpriteSetReader.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_SPRITESETREADER_HPP
2 # define YAPOG_SPRITESETREADER_HPP
3 
4 # include "YAPOG/Macros.hpp"
6 
7 namespace yap
8 {
9  template <typename K>
10  class SpriteSet;
11 
12  template <typename K>
14  {
16 
17  public:
18 
19  SpriteSetReader (SpriteSet<K>& spriteSet, const String& xmlRootNodeName);
20  virtual ~SpriteSetReader ();
21 
22  virtual void Visit (XmlReader& visitable);
23 
24  private:
25 
27  };
28 } // namespace yap
29 
31 
32 #endif // YAPOG_SPRITESETREADER_HPP