Changeset 1791 for code/trunk/src/util/OutputHandler.cc
- Timestamp:
- Sep 16, 2008, 3:46:25 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/util/OutputHandler.cc
r1747 r1791 46 46 this->logfilename_ = logfilename; 47 47 this->logfile_.open(this->logfilename_.c_str(), std::fstream::out); 48 this->logfile_ << "Started log at yyyy/mm/dd hh:mm:ss" << std::endl; 48 this->logfile_ << "Started log at yyyy/mm/dd hh:mm:ss" << std::endl; // Todo: Get date and time 49 49 this->logfile_.flush(); 50 50 } … … 122 122 123 123 /** 124 @brief Overloaded << operator, redirects the output to the console and the logfile.124 @brief Overloaded << operator, redirects the output to the console, the logfile and the ingame shell. 125 125 @param manipulator A function, manipulating the outstream. 126 126 @return A reference to the OutputHandler itself … … 144 144 145 145 /** 146 @brief Overloaded << operator, redirects the output to the console and the logfile.146 @brief Overloaded << operator, redirects the output to the console, the logfile and the ingame shell. 147 147 @param manipulator A function, manipulating the outstream. 148 148 @return A reference to the OutputHandler itself … … 166 166 167 167 /** 168 @brief Overloaded << operator, redirects the output to the console and the logfile.168 @brief Overloaded << operator, redirects the output to the console, the logfile and the ingame shell. 169 169 @param manipulator A function, manipulating the outstream. 170 170 @return A reference to the OutputHandler itself
Note: See TracChangeset
for help on using the changeset viewer.