# HG changeset patch # User Sebastien Jodogne # Date 1601481549 -7200 # Node ID 38d446c9ee1de843286ad2bdaad824f30134a9a2 # Parent 3d6f14a05db1e154dca56598e1d3c3ae44fef6bc fix diff -r 3d6f14a05db1 -r 38d446c9ee1d OrthancFramework/Sources/DicomFormat/DicomStreamReader.h --- a/OrthancFramework/Sources/DicomFormat/DicomStreamReader.h Wed Sep 30 16:25:48 2020 +0200 +++ b/OrthancFramework/Sources/DicomFormat/DicomStreamReader.h Wed Sep 30 17:59:09 2020 +0200 @@ -36,7 +36,7 @@ * doesn't give access to the pixel data of compressed transfer * syntaxes. **/ - class DicomStreamReader : public boost::noncopyable + class ORTHANC_PUBLIC DicomStreamReader : public boost::noncopyable { public: class IVisitor : public boost::noncopyable diff -r 3d6f14a05db1 -r 38d446c9ee1d OrthancFramework/Sources/DicomFormat/StreamBlockReader.h --- a/OrthancFramework/Sources/DicomFormat/StreamBlockReader.h Wed Sep 30 16:25:48 2020 +0200 +++ b/OrthancFramework/Sources/DicomFormat/StreamBlockReader.h Wed Sep 30 17:59:09 2020 +0200 @@ -22,6 +22,8 @@ #pragma once +#include "../OrthancFramework.h" // For ORTHANC_PUBLIC + #include #include #include @@ -34,7 +36,7 @@ * stream. Bytes from the stream are buffered until the requested * size is available, and the full block can be returned. **/ - class StreamBlockReader : public boost::noncopyable + class ORTHANC_PUBLIC StreamBlockReader : public boost::noncopyable { private: std::istream& stream_;