Changeset 3543 in orxonox.OLD for orxonox/trunk/src/lib
- Timestamp:
- Mar 14, 2005, 10:14:41 AM (20 years ago)
- Location:
- orxonox/trunk/src/lib/coord
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/coord/null_parent.cc
r3533 r3543 26 26 NullParent* NullParent::getInstance () 27 27 { 28 if( singletonRef == NULL)28 if(!singletonRef) 29 29 singletonRef = new NullParent (); 30 30 return singletonRef; -
orxonox/trunk/src/lib/coord/p_node.cc
r3537 r3543 22 22 23 23 #include "p_node.h" 24 24 25 #include "null_parent.h" 26 #include "vector.h" 25 27 26 28 using namespace std; -
orxonox/trunk/src/lib/coord/p_node.h
r3537 r3543 22 22 #define _P_NODE_H 23 23 24 #include " stdincl.h"24 #include "base_object.h" 25 25 26 26 // FORWARD DEFINITION \\ 27 27 class PNode; /* forward decleration, so that parentEntry has access to PNode */ 28 class Quaternion; 29 class Vector; 28 30 29 31 //! enumeration for the different translation-binding-types
Note: See TracChangeset
for help on using the changeset viewer.