瀏覽代碼

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;