Changeset 1960 for code/branches/objecthierarchy/src/orxonox
- Timestamp:
- Oct 19, 2008, 11:53:31 PM (16 years ago)
- Location:
- code/branches/objecthierarchy/src/orxonox/objects
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchy/src/orxonox/objects/Test.cc
r1958 r1960 46 46 Test::~Test() 47 47 { 48 48 49 49 } 50 50 … … 67 67 COUT(1) << "V1 changed: " << v1 << std::endl; 68 68 } 69 69 70 70 void Test::checkV2(){ 71 COUT(1) << "V2 changed: " << v 1<< std::endl;71 COUT(1) << "V2 changed: " << v2 << std::endl; 72 72 } 73 73 74 74 void Test::checkV3(){ 75 COUT(1) << "V3 changed: " << v 1<< std::endl;75 COUT(1) << "V3 changed: " << v3 << std::endl; 76 76 } 77 78 77 78 79 79 } -
code/branches/objecthierarchy/src/orxonox/objects/worldentities/PositionableEntity.cc
r1947 r1960 40 40 41 41 this->registerVariables(); 42 43 std::cout << "##### created pos-entity" << std::endl;44 42 } 45 43
Note: See TracChangeset
for help on using the changeset viewer.