comparison Core/HttpServer/HttpOutput.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 94f4a18a79cc
children
comparison
equal deleted inserted replaced
3991:5d2348b39392 3992:f9863630ec7f
43 #include <map> 43 #include <map>
44 #include <vector> 44 #include <vector>
45 45
46 namespace Orthanc 46 namespace Orthanc
47 { 47 {
48 class HttpOutput : public boost::noncopyable 48 class ORTHANC_PUBLIC HttpOutput : public boost::noncopyable
49 { 49 {
50 private: 50 private:
51 typedef std::list< std::pair<std::string, std::string> > Header; 51 typedef std::list< std::pair<std::string, std::string> > Header;
52 52
53 class StateMachine : public boost::noncopyable 53 class StateMachine : public boost::noncopyable