Changeset 9699 in orxonox.OLD for branches/new_class_id/src/lib/script_engine/script_class.cc
- Timestamp:
- Aug 25, 2006, 12:03:59 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/lib/script_engine/script_class.cc
r9692 r9699 24 24 * @todo this constructor is not jet implemented - do it 25 25 */ 26 ScriptClass::ScriptClass(const std::string& name, ClassIDclassID, ScriptMethod* scriptMethods)27 : BaseObject(name) 26 ScriptClass::ScriptClass(const std::string& name, const NewClassID& classID, ScriptMethod* scriptMethods) 27 : BaseObject(name), _classID(classID) 28 28 { 29 29 assert(scriptMethods != NULL); 30 this->registerObject(this, S hell::_objectList);30 this->registerObject(this, ScriptClass::_objectList); 31 31 32 32 this->_classID = classID;
Note: See TracChangeset
for help on using the changeset viewer.