Revision 236,
893 bytes
checked in by mattausch, 19 years ago
(diff) |
erased compiler errors
|
Line | |
---|
1 | #ifndef _Container_H__ |
---|
2 | #define _Container_H__ |
---|
3 | |
---|
4 | #include <vector> |
---|
5 | #include <queue> |
---|
6 | |
---|
7 | using namespace std; |
---|
8 | |
---|
9 | class ViewCell; |
---|
10 | class HierarchyNode; |
---|
11 | class SceneGraphNode; |
---|
12 | class Intersectable; |
---|
13 | |
---|
14 | |
---|
15 | /** Container for Mesh pointers primarily for the use within the kDTree and |
---|
16 | BSP hierarchies */ |
---|
17 | typedef vector<Intersectable *> ObjectContainer; |
---|
18 | |
---|
19 | /** Container for ViewCell pointers primarily for the use within the kDTree and |
---|
20 | BSP hierarchies */ |
---|
21 | |
---|
22 | typedef vector<ViewCell *> ViewCellContainer; |
---|
23 | |
---|
24 | /** Container for ViewCell pointers primarily for the use within the kDTree and |
---|
25 | BSP hierarchies */ |
---|
26 | //typedef vector<MeshInstance *> MeshInstanceContainer; |
---|
27 | |
---|
28 | /** Container for HierarchyNodes pointers primarily for the use within the kDTree and |
---|
29 | BSP hierarchies */ |
---|
30 | |
---|
31 | typedef vector<HierarchyNode *> NodeContainer; |
---|
32 | |
---|
33 | |
---|
34 | typedef vector<SceneGraphNode *> SceneGraphNodeContainer; |
---|
35 | |
---|
36 | |
---|
37 | |
---|
38 | #endif // _Container_H__ |
---|
39 | |
---|
Note: See
TracBrowser
for help on using the repository browser.