Revision 68,
671 bytes
checked in by bittner, 20 years ago
(diff) |
Added include files
|
-
Property svn:executable set to
*
|
Line | |
---|
1 | #ifndef _Container_H__ |
---|
2 | #define _Container_H__ |
---|
3 | |
---|
4 | #include <vector> |
---|
5 | using namespace std; |
---|
6 | |
---|
7 | namespace 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.