Last change
on this file since 4793 was
4790,
checked in by patrick, 19 years ago
|
orxonox/trunk: commiting the missing src files
|
File size:
353 bytes
|
Line | |
---|
1 | /*! |
---|
2 | \file quadtree.h |
---|
3 | \brief Definition of a spatial data separation using quadtree |
---|
4 | |
---|
5 | */ |
---|
6 | |
---|
7 | #ifndef _QUADTREE_H |
---|
8 | #define _QUADTREE_H |
---|
9 | |
---|
10 | |
---|
11 | #include "spatial_separation.h" |
---|
12 | |
---|
13 | //! A class for quadtree separation of the world |
---|
14 | class Quadtree : public SpatialSeparation { |
---|
15 | |
---|
16 | public: |
---|
17 | Quadtree(); |
---|
18 | virtual ~Quadtree(); |
---|
19 | |
---|
20 | |
---|
21 | private: |
---|
22 | |
---|
23 | }; |
---|
24 | |
---|
25 | #endif /* _QUADTREE_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.