Changeset 1768 for code/branches/core3/src/orxonox
- Timestamp:
- Sep 11, 2008, 4:40:01 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core3/src/orxonox/Orxonox.cc
r1766 r1768 89 89 static bool convert(orxonox::Radian* output, const char* input) 90 90 { 91 //std::string asdf("asfd"); 92 //std::cout << asdf; 91 93 float temp; 92 94 convertValue(&temp, input); … … 94 96 } 95 97 }; 98 99 class FooBar { }; 96 100 97 101 … … 217 221 //convertValue(&str, 4.0f); 218 222 219 220 using ::operator<<; 223 //using ::operator<<; 221 224 using std::string; 222 225 int a = 3; 223 Radian asdf; 224 COUT(3) << asdf; 226 FooBar asdf; 227 std::string asdf2; 228 std::cout << asdf2; 229 ConvertValue(&asdf2, asdf); 230 //COUT(3) << asdf; 225 231 226 232 TestConv(1, int, (3), float, 3.0); … … 232 238 TestConv(7, const char*, ("4.3"), float, 4.3f); 233 239 TestConv(8, const char*, ("4,3"), Vector2, Vector2(4,3)); 234 TestConv(9, const char*, ("4.4"), Radian, Radian(4.4));240 //TestConv(9, const char*, ("4.4"), Radian, Radian(4.4)); 235 241 TestConv(100, int, (3), const char*, "3"); 236 242 TestConv(101, Vector3, (1, 2, 3), float, 3.0);
Note: See TracChangeset
for help on using the changeset viewer.