comparison Core/HttpServer/HttpHandler.h @ 473:c9a5d72f8481

changing the namespace of HTTP enumerations
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 15 Jul 2013 17:22:13 +0200
parents bdd72233b105
children 2d0a347e8cfc
comparison
equal deleted inserted replaced
472:722b56b99093 473:c9a5d72f8481
34 34
35 #include <map> 35 #include <map>
36 #include <vector> 36 #include <vector>
37 #include <stdint.h> 37 #include <stdint.h>
38 #include "../Toolbox.h" 38 #include "../Toolbox.h"
39 #include "../../OrthancCppClient/HttpEnumerations.h"
40 39
41 namespace Orthanc 40 namespace Orthanc
42 { 41 {
43 class HttpOutput; 42 class HttpOutput;
44 43
52 } 51 }
53 52
54 virtual bool IsServedUri(const UriComponents& uri) = 0; 53 virtual bool IsServedUri(const UriComponents& uri) = 0;
55 54
56 virtual void Handle(HttpOutput& output, 55 virtual void Handle(HttpOutput& output,
57 Orthanc_HttpMethod method, 56 HttpMethod method,
58 const UriComponents& uri, 57 const UriComponents& uri,
59 const Arguments& headers, 58 const Arguments& headers,
60 const Arguments& getArguments, 59 const Arguments& getArguments,
61 const std::string& postData) = 0; 60 const std::string& postData) = 0;
62 61