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

Revision 68, 671 bytes checked in by bittner, 19 years ago (diff)

Added include files

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