#ifndef _Container_H__ #define _Container_H__ #include using namespace std; namespace GtpVisibilityPreprocessor { class Mesh; class ViewCell; class HierarchyNode; /** Container for Mesh pointers primarily for the use within the kDTree and BSP hierarchies */ typedef vector MeshContainer; /** 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; }; #endif // _Container_H__