Ion
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
settinghandler.h
Go to the documentation of this file.
1 
18 #ifndef ION_REMOTE_SETTINGHANDLER_H_
19 #define ION_REMOTE_SETTINGHANDLER_H_
20 
21 #include <string>
22 
23 #include "ion/remote/httpserver.h"
24 
25 namespace ion {
26 namespace remote {
27 
35  - Sets the value of a Setting and returns its
45  public:
47  ~SettingHandler() override;
48 
49  const std::string HandleRequest(const std::string& path,
50  const HttpServer::QueryMap& args,
51  std::string* content_type) override;
52 };
53 
54 } // namespace remote
55 } // namespace ion
56 
57 #endif // ION_REMOTE_SETTINGHANDLER_H_
double value
SettingHandler serves files related to Settings, including an interface for viewing and modifying the...
std::map< std::string, std::string > QueryMap
Definition: httpserver.h:35
RequestHandlers handle requests for a file or path.
Definition: httpserver.h:68