Revision 2176,
654 bytes
checked in by mattausch, 18 years ago
(diff) |
removed using namespace std from .h
|
-
Property svn:executable set to
*
|
Rev | Line | |
---|
[68] | 1 | #ifndef _Container_H__ |
---|
| 2 | #define _Container_H__ |
---|
| 3 | |
---|
| 4 | #include <vector> |
---|
[2176] | 5 | // |
---|
[68] | 6 | |
---|
| 7 | namespace GtpVisibilityPreprocessor { |
---|
| 8 | class Mesh; |
---|
| 9 | class ViewCell; |
---|
| 10 | class HierarchyNode; |
---|
[863] | 11 | |
---|
[68] | 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; |
---|
[863] | 21 | |
---|
[68] | 22 | }; |
---|
| 23 | |
---|
| 24 | #endif // _Container_H__ |
---|
| 25 | |
---|
Note: See
TracBrowser
for help on using the repository browser.