Changeset 9915 in orxonox.OLD for branches/network/src/lib
- Timestamp:
- Nov 3, 2006, 10:27:59 AM (18 years ago)
- Location:
- branches/network/src/lib
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/lib/graphics/importer/md2/md2Model.cc
r9912 r9915 268 268 /** 269 269 * @brief draws the model: interface for all other classes out in the world 270 * @todo make it const and virtual271 * FIXME272 270 */ 273 271 void MD2Model::draw() const -
branches/network/src/lib/graphics/text_engine/limited_width_text.cc
r9913 r9915 34 34 } 35 35 36 37 38 /**39 * copy constructor40 * @param lwt create copy of this instance41 */42 LimitedWidthText::LimitedWidthText( const LimitedWidthText & lwt )43 {44 this->registerObject(this, LimitedWidthText::_objectList);45 46 this->_dotedText = lwt._dotedText;47 this->_lineWidth = lwt._lineWidth;48 this->_lineEnds = lwt._lineEnds;49 }50 36 51 37 /** -
branches/network/src/lib/graphics/text_engine/limited_width_text.h
r9913 r9915 23 23 24 24 public: 25 LimitedWidthText( const LimitedWidthText& lwt );26 25 LimitedWidthText(const std::string& fontFile = "", unsigned int fontSize = TEXT_DEFAULT_SIZE, float lineWidth = 100.0, DotsPosition dotsPosition = Begin); 27 26 -
branches/network/src/lib/lang/base_object.cc
r9912 r9915 34 34 this->registerObject(this, BaseObject::_objectList); 35 35 } 36 37 /** 38 * copyconstructor 39 * @param bo instance to copy 40 */ 41 BaseObject::BaseObject( const BaseObject& bo ) 42 { 43 this->className = "BaseObject"; 44 this->objectName = ""; 45 this->xmlElem = NULL; 46 this->registerObject( this, BaseObject::_objectList); 47 } 48 36 49 37 50 /** -
branches/network/src/lib/lang/base_object.h
r9908 r9915 30 30 public: 31 31 BaseObject (const std::string& objectName = ""); 32 BaseObject( const BaseObject& bo ); 32 33 33 34 virtual ~BaseObject ();
Note: See TracChangeset
for help on using the changeset viewer.