Changeset 9679 in orxonox.OLD for trunk/src/lib/lang/test_object_list.cc
- Timestamp:
- Aug 22, 2006, 12:01:47 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/lang/test_object_list.cc
r9678 r9679 49 49 this->registerObject(this, Test::objectList); 50 50 51 this->_id.listInheritance();52 51 53 52 // this->setClassID(CL_PARENT_NODE, "Test"); … … 59 58 } 60 59 61 class Bone : public BaseObject60 class Bone : public Test 62 61 { 63 62 public: 64 63 Bone() 65 64 { 66 // this->registerObject(this, Bone::objectList); 65 this->registerObject(this, Bone::objectList); 66 this->_id.listInheritance(); 67 67 68 //std::cout << "Bone()\n"; 68 69 }; … … 80 81 { 81 82 std::cout<< i << std::endl; 82 Test* test = new Test[10000];83 Bone* test = new Bone[10000]; 83 84 // delete[]test; 84 85 }
Note: See TracChangeset
for help on using the changeset viewer.