Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 9, 2013, 9:26:46 PM (12 years ago)
Author:
landauf
Message:

BaseObject now requires a Context instead of a creator (BaseObject*) in its constructor.
Namespace, Level, and Scene inherit from Context

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core6/test/core/class/SubclassIdentifierTest.cc

    r9601 r9629  
    1212        {
    1313            public:
    14                 TestClass(BaseObject* creator = NULL) { RegisterRootObject(TestClass); }
     14                TestClass(Context* context = NULL) { RegisterRootObject(TestClass); }
    1515        };
    1616
     
    1818        {
    1919            public:
    20                 TestSubclass(BaseObject* creator = NULL) { RegisterObject(TestSubclass); }
     20                TestSubclass(Context* context = NULL) { RegisterObject(TestSubclass); }
    2121        };
    2222
Note: See TracChangeset for help on using the changeset viewer.