comparison Core/RestApi/RestApiCall.h @ 978:ce3106e5843f

refactoring
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 30 Jun 2014 16:04:58 +0200
parents c550e99c452b
children 6e7e5ed91c2d
comparison
equal deleted inserted replaced
975:c550e99c452b 978:ce3106e5843f
34 34
35 #include "../HttpServer/HttpHandler.h" 35 #include "../HttpServer/HttpHandler.h"
36 #include "RestApiPath.h" 36 #include "RestApiPath.h"
37 #include "RestApiOutput.h" 37 #include "RestApiOutput.h"
38 38
39 #include <boost/noncopyable.hpp>
40
39 namespace Orthanc 41 namespace Orthanc
40 { 42 {
41 class RestApi; 43 class RestApi;
42 44
43 class RestApiCall 45 class RestApiCall : public boost::noncopyable
44 { 46 {
45 private: 47 private:
46 RestApiOutput& output_; 48 RestApiOutput& output_;
47 RestApi& context_; 49 RestApi& context_;
48 const HttpHandler::Arguments& httpHeaders_; 50 const HttpHandler::Arguments& httpHeaders_;