diff Framework/Viewport/IStatusBar.h @ 53:c2dc924f1a63 wasm

removing threading out of the framework
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 27 Apr 2017 16:57:49 +0200
parents 28956ed68280
children e2fe9352f240
line wrap: on
line diff
--- a/Framework/Viewport/IStatusBar.h	Thu Apr 27 14:50:40 2017 +0200
+++ b/Framework/Viewport/IStatusBar.h	Thu Apr 27 16:57:49 2017 +0200
@@ -22,14 +22,17 @@
 #pragma once
 
 #include <string>
-#include "../Toolbox/IThreadSafety.h"
+#include <boost/noncopyable.hpp>
 
 namespace OrthancStone
 {
-  // This class must be thread-safe
-  class IStatusBar : public IThreadSafe
+  class IStatusBar : public boost::noncopyable
   {
   public:
+    virtual ~IStatusBar()
+    {
+    }
+    
     virtual void ClearMessage() = 0;
 
     virtual void SetMessage(const std::string& message) = 0;