Changeset 8809 for code/branches/output/src/orxonox/Test.cc
- Timestamp:
- Aug 1, 2011, 4:37:38 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/output/src/orxonox/Test.cc
r7284 r8809 127 127 // mt2.importData( temp ); 128 128 // assert( temp-mem == mt1.getNetworkSize() ); 129 // COUT(0) << mt2 << endl;129 // orxout() << mt2 << endl; 130 130 // if(!Core::isMaster()) 131 131 // call2(0, "bal", "a", "n", "ce"); … … 135 135 void Test::printBlaBla(std::string s1, std::string s2, std::string s3, std::string s4, std::string s5) 136 136 { 137 COUT(0) << s1 << s2 << s3 << s4 << s5 << endl;137 orxout() << s1 << s2 << s3 << s4 << s5 << endl; 138 138 } 139 139 140 void Test::checkU1(){ COUT(1) << "U1 changed: " << u1 << std::endl; }141 void Test::checkU2(){ COUT(1) << "U2 changed: " << u2 << std::endl; }142 void Test::checkU3(){ COUT(1) << "U3 changed: " << u3 << std::endl; }143 void Test::checkU4(){ COUT(1) << "U4 changed: " << u4 << std::endl; }140 void Test::checkU1(){ orxout() << "U1 changed: " << u1 << endl; } 141 void Test::checkU2(){ orxout() << "U2 changed: " << u2 << endl; } 142 void Test::checkU3(){ orxout() << "U3 changed: " << u3 << endl; } 143 void Test::checkU4(){ orxout() << "U4 changed: " << u4 << endl; } 144 144 145 void Test::checkS1(){ COUT(1) << "S1 changed: " << s1 << std::endl; }146 void Test::checkS2(){ COUT(1) << "S2 changed: " << s2 << std::endl; }147 void Test::checkS3(){ COUT(1) << "S3 changed: " << s3 << std::endl; }148 void Test::checkS4(){ COUT(1) << "S4 changed: " << s4 << std::endl; }145 void Test::checkS1(){ orxout() << "S1 changed: " << s1 << endl; } 146 void Test::checkS2(){ orxout() << "S2 changed: " << s2 << endl; } 147 void Test::checkS3(){ orxout() << "S3 changed: " << s3 << endl; } 148 void Test::checkS4(){ orxout() << "S4 changed: " << s4 << endl; } 149 149 150 void Test::printPointer(){ CCOUT(1) << "pointer: " << this->pointer_ << endl; }150 void Test::printPointer(){ orxout() << "pointer: " << this->pointer_ << endl; } 151 151 152 152 }
Note: See TracChangeset
for help on using the changeset viewer.