diff Framework/Viewport/IMouseTracker.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/IMouseTracker.h	Thu Apr 27 14:50:40 2017 +0200
+++ b/Framework/Viewport/IMouseTracker.h	Thu Apr 27 16:57:49 2017 +0200
@@ -22,14 +22,16 @@
 #pragma once
 
 #include "CairoSurface.h"
-#include "../Toolbox/IThreadSafety.h"
 
 namespace OrthancStone
 {
-  // Not thread-safe
-  class IMouseTracker : public IThreadUnsafe
+  class IMouseTracker : public boost::noncopyable
   {
   public:
+    virtual ~IMouseTracker()
+    {
+    }
+    
     virtual void Render(Orthanc::ImageAccessor& surface) = 0;
 
     virtual void MouseUp() = 0;