Changeset 685 for code/branches/FICN
- Timestamp:
- Dec 26, 2007, 3:24:14 PM (17 years ago)
- Location:
- code/branches/FICN/src/orxonox/core
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/orxonox/core/OutputHandler.cc
r684 r685 116 116 @param output The value that should be shown in the console 117 117 @return A reference to the OutputHandler itself 118 */ 118 *//* 119 119 OutputHandler& operator<<(OutputHandler& out, char c) 120 120 { … … 123 123 out.getLogfile().flush(); 124 124 return out; 125 } 125 }*/ 126 126 127 127 /** … … 129 129 @param output The value that should be shown in the console 130 130 @return A reference to the OutputHandler itself 131 */ 131 *//* 132 132 OutputHandler& operator<<(OutputHandler& out, signed char c) 133 133 { … … 136 136 out.getLogfile().flush(); 137 137 return out; 138 } 138 }*/ 139 139 140 140 /** … … 142 142 @param output The value that should be shown in the console 143 143 @return A reference to the OutputHandler itself 144 */ 144 *//* 145 145 OutputHandler& operator<<(OutputHandler& out, unsigned char c) 146 146 { … … 149 149 out.getLogfile().flush(); 150 150 return out; 151 } 151 }*/ 152 152 153 153 /** … … 155 155 @param output The value that should be shown in the console 156 156 @return A reference to the OutputHandler itself 157 */ 157 *//* 158 158 OutputHandler& operator<<(OutputHandler& out, const char* s) 159 159 { … … 162 162 out.getLogfile().flush(); 163 163 return out; 164 } 164 }*/ 165 165 166 166 /** … … 168 168 @param output The value that should be shown in the console 169 169 @return A reference to the OutputHandler itself 170 */ 170 *//* 171 171 OutputHandler& operator<<(OutputHandler& out, const signed char* s) 172 172 { … … 175 175 out.getLogfile().flush(); 176 176 return out; 177 } 177 }*/ 178 178 179 179 /** … … 181 181 @param output The value that should be shown in the console 182 182 @return A reference to the OutputHandler itself 183 */ 183 *//* 184 184 OutputHandler& operator<<(OutputHandler& out, const unsigned char* s) 185 185 { … … 188 188 out.getLogfile().flush(); 189 189 return out; 190 } 190 }*/ 191 191 } -
code/branches/FICN/src/orxonox/core/OutputHandler.h
r684 r685 109 109 return *this; 110 110 } 111 /* 112 _CoreExport OutputHandler& operator<<(OutputHandler& out, char c); 113 _CoreExport OutputHandler& operator<<(OutputHandler& out, signed char c); 114 _CoreExport OutputHandler& operator<<(OutputHandler& out, unsigned char c); 111 115 112 OutputHandler& operator<<(OutputHandler& out, char c); 113 OutputHandler& operator<<(OutputHandler& out, signed char c); 114 OutputHandler& operator<<(OutputHandler& out, unsigned char c); 115 116 OutputHandler& operator<<(OutputHandler& out, const char* s); 117 OutputHandler& operator<<(OutputHandler& out, const signed char* s); 118 OutputHandler& operator<<(OutputHandler& out, const unsigned char* s); 119 116 _CoreExport OutputHandler& operator<<(OutputHandler& out, const char* s); 117 _CoreExport OutputHandler& operator<<(OutputHandler& out, const signed char* s); 118 _CoreExport OutputHandler& operator<<(OutputHandler& out, const unsigned char* s); 119 */ 120 120 /** 121 121 @brief Overloading of the non-member << operator to redirect the output of classes with self defined '<< to std::ostream' operators to the console and the logfile. … … 132 132 return out; 133 133 } 134 134 135 } 135 136
Note: See TracChangeset
for help on using the changeset viewer.