Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3543 in orxonox.OLD for orxonox/trunk/src/lib


Ignore:
Timestamp:
Mar 14, 2005, 10:14:41 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: some more classes now destroy themselves via virtual-destructors and call to predecessing destroy-function
also made
#include "stdincl.h" out of unnecessary h-files, so we got faster compile time.

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

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/coord/null_parent.cc

    r3533 r3543  
    2626NullParent* NullParent::getInstance ()
    2727{
    28   if( singletonRef == NULL)
     28  if(!singletonRef)
    2929    singletonRef = new NullParent ();
    3030  return singletonRef;
  • orxonox/trunk/src/lib/coord/p_node.cc

    r3537 r3543  
    2222
    2323#include "p_node.h"
     24
    2425#include "null_parent.h"
     26#include "vector.h"
    2527
    2628using namespace std;
  • orxonox/trunk/src/lib/coord/p_node.h

    r3537 r3543  
    2222#define _P_NODE_H
    2323
    24 #include "stdincl.h"
     24#include "base_object.h"
    2525
    26 
     26// FORWARD DEFINITION \\
    2727class PNode; /* forward decleration, so that parentEntry has access to PNode */
     28class Quaternion;
     29class Vector;
    2830
    2931//! enumeration for the different translation-binding-types
Note: See TracChangeset for help on using the changeset viewer.