return *this;
}
+Logger& Logger::operator<<(unsigned int i)
+{
+ ostringstream tmp;
+ tmp<<i;
+
+ *this<<tmp.str();
+
+ return *this;
+}
+
+
Logger& Logger::operator<<(ostream & (&)(ostream &))
{
// *this<<" ("<<(int)d_outputurgencies[pthread_self()]<<", "<<(int)consoleUrgency<<")";
*/
Logger& operator<<(const string &s); //!< log a string
Logger& operator<<(int); //!< log an int
+ Logger& operator<<(unsigned int); //!< log an unsigned int
Logger& operator<<(Urgency); //!< set the urgency, << style
#ifndef WIN32