Преглед изворни кода

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;