Changeset 1725 for code/branches/core3
- Timestamp:
 - Sep 7, 2008, 12:40:06 AM (17 years ago)
 - Location:
 - code/branches/core3/src
 - Files:
 - 
          
- 2 edited
 
- 
          core/Functor.h (modified) (1 diff)
 - 
          util/OutputHandler.h (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
        
code/branches/core3/src/core/Functor.h
r1720 r1725 69 69 CreateTypeToStringTemplate(long); 70 70 CreateTypeToStringTemplate(unsigned long); 71 CreateTypeToStringTemplate(long long); 72 CreateTypeToStringTemplate(unsigned long long); 71 73 CreateTypeToStringTemplate(float); 72 74 CreateTypeToStringTemplate(double);  - 
        
code/branches/core3/src/util/OutputHandler.h
r1586 r1725 107 107 108 108 /** @brief Overloaded << operator, redirects the output to the console and the logfile. @param val The value that should be shown in the console @return A reference to the OutputHandler itself */ 109 inline OutputHandler& operator<<(unsigned char val) { return this->output(val); } 110 /** @brief Overloaded << operator, redirects the output to the console and the logfile. @param val The value that should be shown in the console @return A reference to the OutputHandler itself */ 111 inline OutputHandler& operator<<(short val) { return this->output(val); } 112 /** @brief Overloaded << operator, redirects the output to the console and the logfile. @param val The value that should be shown in the console @return A reference to the OutputHandler itself */ 113 inline OutputHandler& operator<<(unsigned short val) { return this->output(val); } 114 /** @brief Overloaded << operator, redirects the output to the console and the logfile. @param val The value that should be shown in the console @return A reference to the OutputHandler itself */ 115 inline OutputHandler& operator<<(int val) { return this->output(val); } 116 /** @brief Overloaded << operator, redirects the output to the console and the logfile. @param val The value that should be shown in the console @return A reference to the OutputHandler itself */ 117 inline OutputHandler& operator<<(unsigned int val) { return this->output(val); } 118 /** @brief Overloaded << operator, redirects the output to the console and the logfile. @param val The value that should be shown in the console @return A reference to the OutputHandler itself */ 119 inline OutputHandler& operator<<(long val) { return this->output(val); } 120 /** @brief Overloaded << operator, redirects the output to the console and the logfile. @param val The value that should be shown in the console @return A reference to the OutputHandler itself */ 121 inline OutputHandler& operator<<(unsigned long val) { return this->output(val); } 122 /** @brief Overloaded << operator, redirects the output to the console and the logfile. @param val The value that should be shown in the console @return A reference to the OutputHandler itself */ 123 inline OutputHandler& operator<<(float val) { return this->output(val); } 124 /** @brief Overloaded << operator, redirects the output to the console and the logfile. @param val The value that should be shown in the console @return A reference to the OutputHandler itself */ 125 inline OutputHandler& operator<<(double val) { return this->output(val); } 126 /** @brief Overloaded << operator, redirects the output to the console and the logfile. @param val The value that should be shown in the console @return A reference to the OutputHandler itself */ 127 inline OutputHandler& operator<<(long double val) { return this->output(val); } 128 /** @brief Overloaded << operator, redirects the output to the console and the logfile. @param val The value that should be shown in the console @return A reference to the OutputHandler itself */ 129 inline OutputHandler& operator<<(const void* val) { return this->output(val); } 130 /** @brief Overloaded << operator, redirects the output to the console and the logfile. @param val The value that should be shown in the console @return A reference to the OutputHandler itself */ 131 inline OutputHandler& operator<<(bool val) { return this->output(val); } 109 inline OutputHandler& operator<<(unsigned char val) { return this->output(val); } 110 /** @brief Overloaded << operator, redirects the output to the console and the logfile. @param val The value that should be shown in the console @return A reference to the OutputHandler itself */ 111 inline OutputHandler& operator<<(short val) { return this->output(val); } 112 /** @brief Overloaded << operator, redirects the output to the console and the logfile. @param val The value that should be shown in the console @return A reference to the OutputHandler itself */ 113 inline OutputHandler& operator<<(unsigned short val) { return this->output(val); } 114 /** @brief Overloaded << operator, redirects the output to the console and the logfile. @param val The value that should be shown in the console @return A reference to the OutputHandler itself */ 115 inline OutputHandler& operator<<(int val) { return this->output(val); } 116 /** @brief Overloaded << operator, redirects the output to the console and the logfile. @param val The value that should be shown in the console @return A reference to the OutputHandler itself */ 117 inline OutputHandler& operator<<(unsigned int val) { return this->output(val); } 118 /** @brief Overloaded << operator, redirects the output to the console and the logfile. @param val The value that should be shown in the console @return A reference to the OutputHandler itself */ 119 inline OutputHandler& operator<<(long val) { return this->output(val); } 120 /** @brief Overloaded << operator, redirects the output to the console and the logfile. @param val The value that should be shown in the console @return A reference to the OutputHandler itself */ 121 inline OutputHandler& operator<<(unsigned long val) { return this->output(val); } 122 /** @brief Overloaded << operator, redirects the output to the console and the logfile. @param val The value that should be shown in the console @return A reference to the OutputHandler itself */ 123 inline OutputHandler& operator<<(long long val) { return this->output(val); } 124 /** @brief Overloaded << operator, redirects the output to the console and the logfile. @param val The value that should be shown in the console @return A reference to the OutputHandler itself */ 125 inline OutputHandler& operator<<(unsigned long long val) { return this->output(val); } 126 /** @brief Overloaded << operator, redirects the output to the console and the logfile. @param val The value that should be shown in the console @return A reference to the OutputHandler itself */ 127 inline OutputHandler& operator<<(float val) { return this->output(val); } 128 /** @brief Overloaded << operator, redirects the output to the console and the logfile. @param val The value that should be shown in the console @return A reference to the OutputHandler itself */ 129 inline OutputHandler& operator<<(double val) { return this->output(val); } 130 /** @brief Overloaded << operator, redirects the output to the console and the logfile. @param val The value that should be shown in the console @return A reference to the OutputHandler itself */ 131 inline OutputHandler& operator<<(long double val) { return this->output(val); } 132 /** @brief Overloaded << operator, redirects the output to the console and the logfile. @param val The value that should be shown in the console @return A reference to the OutputHandler itself */ 133 inline OutputHandler& operator<<(const void* val) { return this->output(val); } 134 /** @brief Overloaded << operator, redirects the output to the console and the logfile. @param val The value that should be shown in the console @return A reference to the OutputHandler itself */ 135 inline OutputHandler& operator<<(bool val) { return this->output(val); } 132 136 133 137 OutputHandler& operator<<(std::streambuf* sb);  
Note: See TracChangeset
          for help on using the changeset viewer.
      


            






