Ion
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
calltracehandler.h
Go to the documentation of this file.
1 
18 #ifndef ION_REMOTE_CALLTRACEHANDLER_H_
19 #define ION_REMOTE_CALLTRACEHANDLER_H_
20 
21 #include <string>
22 
23 #include "ion/remote/httpserver.h"
24 
25 namespace ion {
26 namespace remote {
27 
33  public:
35  ~CallTraceHandler() override;
36 
37  const std::string HandleRequest(const std::string& path_in,
39  std::string* content_type) override;
40 };
41 
42 } // namespace remote
43 } // namespace ion
44 
45 #endif // ION_REMOTE_CALLTRACEHANDLER_H_
CallTraceHandler serves a snapshot of the current call trace.
std::map< std::string, std::string > QueryMap
Definition: httpserver.h:35
RequestHandlers handle requests for a file or path.
Definition: httpserver.h:68