1 #ifndef SRC_RESOURCEPARAMETERS_HPP_ 2 #define SRC_RESOURCEPARAMETERS_HPP_ 27 bool isRequestParameterSet(std::string
const &name);
28 std::string getRequestParameter(std::string
const &name);
29 uint16_t getRequestParameterInt(std::string
const &name);
30 void setRequestParameter(std::string
const &name, std::string
const &value);
32 std::string getUrlParameter(uint8_t idx);
33 uint16_t getUrlParameterInt(uint8_t idx);
34 void resetUrlParameters();
35 void setUrlParameterCount(uint8_t idx);
36 void setUrlParameter(uint8_t idx, std::string
const &val);
39 std::vector<std::string> _urlParams;
40 std::vector<std::pair<std::string, std::string>> _reqParams;
Definition: ResourceParameters.hpp:17
Class used to handle access to the URL parameters.
Definition: ResourceParameters.hpp:22
Definition: ConnectionContext.cpp:3