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