Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 25, 2006, 12:03:59 AM (18 years ago)
Author:
bensch
Message:

adapted script_engine

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/new_class_id/src/lib/script_engine/script_class.cc

    r9692 r9699  
    2424 * @todo this constructor is not jet implemented - do it
    2525*/
    26 ScriptClass::ScriptClass(const std::string& name, ClassID classID, ScriptMethod* scriptMethods)
    27     : BaseObject(name)
     26ScriptClass::ScriptClass(const std::string& name, const NewClassID& classID, ScriptMethod* scriptMethods)
     27    : BaseObject(name), _classID(classID)
    2828{
    2929  assert(scriptMethods != NULL);
    30   this->registerObject(this, Shell::_objectList);
     30  this->registerObject(this, ScriptClass::_objectList);
    3131
    3232  this->_classID = classID;
Note: See TracChangeset for help on using the changeset viewer.