#ifndef _Container_H__ #define _Container_H__ #include using namespace std; class ViewCell; class HierarchyNode; class SceneGraphNode; class Intersectable; /** Container for Mesh pointers primarily for the use within the kDTree and BSP hierarchies */ typedef vector ObjectContainer; /** Container for ViewCell pointers primarily for the use within the kDTree and BSP hierarchies */ typedef vector ViewCellContainer; /** Container for HierarchyNodes pointers primarily for the use within the kDTree and BSP hierarchies */ typedef vector NodeContainer; typedef vector SceneGraphNodeContainer; #endif // _Container_H__