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