Changeset 460 for code/branches/objecthierarchy/src/orxonox/core
- Timestamp:
- Dec 12, 2007, 1:18:46 AM (17 years ago)
- Location:
- code/branches/objecthierarchy/src/orxonox/core
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchy/src/orxonox/core/CoreIncludes.h
r457 r460 22 22 #include "OgreVector3.h" 23 23 #include "OgreColourValue.h" 24 #include "OgreQuaternion.h" 25 #include "OgreMatrix3.h" 24 26 25 27 … … 30 32 typedef Ogre::Vector3 Vector3; 31 33 typedef Ogre::ColourValue ColourValue; 34 typedef Ogre::Radian Radian; 35 typedef Ogre::Real Real; 36 typedef Ogre::Quaternion Quaternion; 37 typedef Ogre::Matrix3 Matrix3; 32 38 } 33 39 -
code/branches/objecthierarchy/src/orxonox/core/OrxonoxClass.h
r447 r460 103 103 104 104 /** @brief Sets the name of the object. @param name The name */ 105 inline v oid setName(const std::string& name) { this->name_ = name; }105 inline virtual void setName(const std::string& name) { this->name_ = name; } 106 106 107 107 /** @returns the name of the object. */ … … 109 109 110 110 /** @brief Sets the state of the objects activity. @param bActive True = active */ 111 inline v oid setActive(bool bActive) { this->bActive_ = bActive; }111 inline virtual void setActive(bool bActive) { this->bActive_ = bActive; } 112 112 113 113 /** @returns the state of the objects activity. */ … … 115 115 116 116 /** @brief Sets the state of the objects visibility. @param bVisible True = visible */ 117 inline v oid setVisible(bool bVisible) { this->bVisible_ = bVisible; }117 inline virtual void setVisible(bool bVisible) { this->bVisible_ = bVisible; } 118 118 119 119 /** @returns the state of the objects visibility. */
Note: See TracChangeset
for help on using the changeset viewer.