diff Core/Compression/ZipWriter.h @ 3992:f9863630ec7f

working on the shared library for Orthanc framework
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 05 Jun 2020 16:07:01 +0200
parents 0b3256c3ee14
children
line wrap: on
line diff
--- a/Core/Compression/ZipWriter.h	Fri May 29 21:23:57 2020 +0200
+++ b/Core/Compression/ZipWriter.h	Fri Jun 05 16:07:01 2020 +0200
@@ -33,6 +33,8 @@
 
 #pragma once
 
+#include "../OrthancFramework.h"
+
 #if !defined(ORTHANC_ENABLE_ZLIB)
 #  error The macro ORTHANC_ENABLE_ZLIB must be defined
 #endif
@@ -44,11 +46,12 @@
 
 #include <stdint.h>
 #include <string>
+#include <boost/noncopyable.hpp>
 #include <boost/shared_ptr.hpp>
 
 namespace Orthanc
 {
-  class ZipWriter
+  class ORTHANC_PUBLIC ZipWriter : public boost::noncopyable
   {
   private:
     struct PImpl;