Changeset 7447 in orxonox.OLD for branches/qt_gui/src/lib/lang
- Timestamp:
- Apr 29, 2006, 7:49:19 PM (19 years ago)
- Location:
- branches/qt_gui/src/lib/lang
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/qt_gui/src/lib/lang/base_object.cc
r7429 r7447 20 20 21 21 #include "util/loading/load_param.h" 22 #include "compiler.h"23 22 #include "class_list.h" 24 23 … … 32 31 * @param root the element to load from 33 32 */ 34 BaseObject::BaseObject( )33 BaseObject::BaseObject(const std::string& objectName) 35 34 { 36 35 this->classID = CL_BASE_OBJECT; 37 36 this->className = "BaseObject"; 38 37 39 this->objectName = "";38 this->objectName = objectName; 40 39 this->classList = NULL; 41 40 this->xmlElem = NULL; -
branches/qt_gui/src/lib/lang/base_object.h
r7221 r7447 27 27 28 28 public: 29 BaseObject ();29 BaseObject (const std::string& objectName = ""); 30 30 virtual ~BaseObject (); 31 31
Note: See TracChangeset
for help on using the changeset viewer.