Revision 372,
1.1 KB
checked in by bittner, 19 years ago
(diff) |
preparation for vss preprocessor. converted all .cpp and .h to dos new line format
|
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 | class Polygon3;
|
---|
14 | class Ray;
|
---|
15 |
|
---|
16 | /** Container storing polygons used during BSP tree construction.
|
---|
17 | */
|
---|
18 | typedef vector<Polygon3 *> PolygonContainer;
|
---|
19 |
|
---|
20 | /** Container storing a bundle of rays.
|
---|
21 | */
|
---|
22 | typedef vector<Ray *> RayContainer;
|
---|
23 |
|
---|
24 | /** Container for Mesh pointers primarily for the use within the kDTree and
|
---|
25 | BSP hierarchies */
|
---|
26 | typedef vector<Intersectable *> ObjectContainer;
|
---|
27 |
|
---|
28 | /** Container for ViewCell pointers primarily for the use within the kDTree and
|
---|
29 | BSP hierarchies */
|
---|
30 |
|
---|
31 | typedef vector<ViewCell *> ViewCellContainer;
|
---|
32 |
|
---|
33 | /** Container for ViewCell pointers primarily for the use within the kDTree and
|
---|
34 | BSP hierarchies */
|
---|
35 | //typedef vector<MeshInstance *> MeshInstanceContainer;
|
---|
36 |
|
---|
37 | /** Container for HierarchyNodes pointers primarily for the use within the kDTree and
|
---|
38 | BSP hierarchies */
|
---|
39 |
|
---|
40 | typedef vector<HierarchyNode *> NodeContainer;
|
---|
41 |
|
---|
42 |
|
---|
43 | typedef vector<SceneGraphNode *> SceneGraphNodeContainer;
|
---|
44 |
|
---|
45 |
|
---|
46 |
|
---|
47 | #endif // _Container_H__
|
---|
48 |
|
---|
Note: See
TracBrowser
for help on using the repository browser.