Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/util/collision_detection/bv_tree.h @ 4521

Last change on this file since 4521 was 4514, checked in by patrick, 19 years ago

orxonox/trunk: got the class hirarchy right now

File size: 338 bytes
Line 
1/*!
2    \file bv_tree.h
3    \brief Definition of a bounding volume tree
4
5*/
6
7#ifndef _BV_TREE_H
8#define _BV_TREE_H
9
10#include "base_object.h"
11
12// FORWARD DEFINITION
13
14
15
16//! A class that represents a bounding volume tree
17class BVTree : public BaseObject {
18
19 public:
20  BVTree();
21  virtual ~BVTree();
22
23
24 private:
25
26};
27
28#endif /* _BV_TREE_H */
Note: See TracBrowser for help on using the repository browser.