source: GTP/trunk/Lib/Vis/Preprocessing/include/Containers.h @ 2168

Revision 2168, 674 bytes checked in by mattausch, 17 years ago (diff)
  • Property svn:executable set to *
Line 
1#ifndef _Container_H__
2#define _Container_H__
3
4#include <vector>
5//using namespace std;
6
7namespace GtpVisibilityPreprocessor {
8  class Mesh;
9  class ViewCell;
10  class HierarchyNode;
11
12  /** Container for Mesh pointers primarily for the use within the kDTree and
13      BSP hierarchies */
14  typedef vector<Mesh *> MeshContainer;
15  /** Container for ViewCell pointers primarily for the use within the kDTree and
16      BSP hierarchies */
17  typedef vector<ViewCell *> ViewCellContainer;
18  /** Container for HierarchyNodes pointers primarily for the use within the kDTree and
19      BSP hierarchies */
20  typedef vector<HierarchyNode *> NodeContainer;
21
22};
23
24#endif // _Container_H__
25
Note: See TracBrowser for help on using the repository browser.