Преглед на файлове

Added specialized operator<<(bool) in ctkLogStream

Sascha Zelzer преди 14 години
родител
ревизия
b1a0e877e7
променени са 1 файла, в които са добавени 6 реда и са изтрити 0 реда
  1. 6 0
      Libs/PluginFramework/service/log/ctkLogStream.h

+ 6 - 0
Libs/PluginFramework/service/log/ctkLogStream.h

@@ -52,6 +52,12 @@ public:
     return *this;
   }
 
+  ctkLogStream& operator <<(bool b)
+  {
+    ts << (b ? "true" : "false");
+    return *this;
+  }
+
 protected:
 
   QString msg;