OpenPolygon  1.0.0
OpenPolygon is a Rendering Engine
positionmanager.h
1 #ifndef POSITIONMANAGER_H
2 #define POSITIONMANAGER_H
3 
4 #include "index.h"
5 #include "position.h"
6 
7 namespace Engine
8 {
14  class PositionManager : public Arch::ITempDatabase< Position >
15  {
16  public:
18  ~PositionManager() =default;
19 
20  Position * createPosition(void);
21 
22  Position * getPosition( uint container_id );
23 
24  void destroy( uint container_id );
25  };
26 }
27 
28 #endif // POSITIONMANAGER_H
The PositionManager class.
Definition: positionmanager.h:14
Definition: element.h:23
The Position class.
Definition: position.h:29