comparison Core/HttpServer/HttpHandler.h @ 324:64925c94825c

api improvement
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 08 Jan 2013 09:29:56 +0100
parents 7f74209ea0f8
children 78a8eaa5f30b
comparison
equal deleted inserted replaced
323:052dede32761 324:64925c94825c
33 #pragma once 33 #pragma once
34 34
35 #include <map> 35 #include <map>
36 #include <vector> 36 #include <vector>
37 #include <stdint.h> 37 #include <stdint.h>
38 #include "HttpOutput.h"
39 #include "../Toolbox.h" 38 #include "../Toolbox.h"
40 39
41 namespace Orthanc 40 namespace Orthanc
42 { 41 {
42 class HttpOutput;
43
43 class HttpHandler 44 class HttpHandler
44 { 45 {
45 public: 46 public:
46 typedef std::map<std::string, std::string> Arguments; 47 typedef std::map<std::string, std::string> Arguments;
47 48