diff Framework/Scene2D/ICompositor.h @ 1053:32b403a47b19

simplifying IViewport
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 10 Oct 2019 15:24:48 +0200
parents 88bf49aebc13
children d10d2acb8a02
line wrap: on
line diff
--- a/Framework/Scene2D/ICompositor.h	Thu Oct 10 14:37:23 2019 +0200
+++ b/Framework/Scene2D/ICompositor.h	Thu Oct 10 15:24:48 2019 +0200
@@ -1,29 +1,29 @@
-#pragma once
-
-#include <boost/noncopyable.hpp>
-#include <EmbeddedResources.h>
-#include <Core/Enumerations.h>
-
-namespace OrthancStone
-{
-  class ICompositor : public boost::noncopyable
-  {
-
-  public:
-    virtual ~ICompositor() {}
-
-    virtual unsigned int GetCanvasWidth() const = 0;
-
-    virtual unsigned int GetCanvasHeight() const = 0;
-
-    virtual void Refresh() = 0;
-
-#if ORTHANC_ENABLE_LOCALE == 1
-    virtual void SetFont(size_t index,
-                         Orthanc::EmbeddedResources::FileResourceId resource,
-                         unsigned int fontSize,
-                         Orthanc::Encoding codepage) = 0;
-#endif
-
-  };
-}
+#pragma once
+
+#include <boost/noncopyable.hpp>
+#include <EmbeddedResources.h>
+#include <Core/Enumerations.h>
+
+namespace OrthancStone
+{
+  class ICompositor : public boost::noncopyable
+  {
+  public:
+    virtual ~ICompositor() 
+    {
+    }
+
+    virtual unsigned int GetCanvasWidth() const = 0;
+
+    virtual unsigned int GetCanvasHeight() const = 0;
+
+    virtual void Refresh() = 0;
+
+#if ORTHANC_ENABLE_LOCALE == 1
+    virtual void SetFont(size_t index,
+                         Orthanc::EmbeddedResources::FileResourceId resource,
+                         unsigned int fontSize,
+                         Orthanc::Encoding codepage) = 0;
+#endif
+  };
+}