Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4809 in orxonox.OLD


Ignore:
Timestamp:
Jul 7, 2005, 1:23:53 PM (19 years ago)
Author:
patrick
Message:

orxonox/trunk: debug module support implemented

Location:
orxonox/trunk/src/lib/graphics
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/graphics/importer/abstract_model.h

    r4806 r4809  
    2929using namespace std;
    3030
     31class Quadtree;
    3132
    3233
     
    146147  protected:
    147148    modelInfo*     pModelInfo;      //!< Reference to the modelInfo defined in abstract_model.h
     149    Quadtree*      quadtreel;       //!< Reference to the quadtree of the object, NULL if not defined
    148150};
    149151
  • orxonox/trunk/src/lib/graphics/spatial_separation/spatial_separation.cc

    r4808 r4809  
    2626   \todo this constructor is not jet implemented - do it
    2727*/
    28 SpatialSeparation::SpatialSeparation (AbstractModel* model)
     28SpatialSeparation::SpatialSeparation ()
    2929{
    3030   this->setClassID(CL_SPATIAL_SEPARATION, "SpatialSeparation");
  • orxonox/trunk/src/lib/graphics/spatial_separation/spatial_separation.h

    r4808 r4809  
    33    \brief Definition of the generic spatial separation of model data
    44
    5 */
     5 */
    66
    77#ifndef _SPATIAL_SEPARATION_H
     
    1212
    1313class AbstractModel;
     14class Quadtree;
    1415
    1516
     
    1718class SpatialSeparation : public BaseObject {
    1819
    19  public:
    20   SpatialSeparation(AbstractModel* model);
    21   virtual ~SpatialSeparation();
     20  public:
     21    SpatialSeparation();
     22    virtual ~SpatialSeparation();
     23
     24    Quadtree* createQuadtree(AbstractModel* model);
    2225
    2326
    24 
    25 
    26  private:
    27    AbstractModel*             model;
     27  private:
     28    AbstractModel*             model;
    2829
    2930
Note: See TracChangeset for help on using the changeset viewer.