comparison Plugins/Engine/OrthancPlugins.h @ 1133:382e162c074c

rename
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 09 Sep 2014 10:45:14 +0200
parents f739d3f6cfcf
children 67c3c1e4a6e0
comparison
equal deleted inserted replaced
1132:f739d3f6cfcf 1133:382e162c074c
41 #include <list> 41 #include <list>
42 #include <boost/shared_ptr.hpp> 42 #include <boost/shared_ptr.hpp>
43 43
44 namespace Orthanc 44 namespace Orthanc
45 { 45 {
46 class PluginsHttpHandler : public HttpHandler, public IPluginServiceProvider 46 class OrthancPlugins : public HttpHandler, public IPluginServiceProvider
47 { 47 {
48 private: 48 private:
49 struct PImpl; 49 struct PImpl;
50 50
51 boost::shared_ptr<PImpl> pimpl_; 51 boost::shared_ptr<PImpl> pimpl_;
78 void SendMethodNotAllowed(const void* parameters); 78 void SendMethodNotAllowed(const void* parameters);
79 79
80 void SetCookie(const void* parameters); 80 void SetCookie(const void* parameters);
81 81
82 public: 82 public:
83 PluginsHttpHandler(ServerContext& context); 83 OrthancPlugins(ServerContext& context);
84 84
85 virtual ~PluginsHttpHandler(); 85 virtual ~OrthancPlugins();
86 86
87 virtual bool Handle(HttpOutput& output, 87 virtual bool Handle(HttpOutput& output,
88 HttpMethod method, 88 HttpMethod method,
89 const UriComponents& uri, 89 const UriComponents& uri,
90 const Arguments& headers, 90 const Arguments& headers,