| #include <boost/beast/http/verb.hpp> |
| std::vector<int64_t> intParams; |
| std::vector<uint64_t> uintParams; |
| std::vector<double> doubleParams; |
| std::vector<std::string> stringParams; |
| std::cerr << "RoutingParams" << std::endl; |
| for (auto i : uintParams) |
| for (auto i : doubleParams) |
| for (auto& i : stringParams) |
| inline int64_t RoutingParams::get<int64_t>(unsigned index) const |
| inline uint64_t RoutingParams::get<uint64_t>(unsigned index) const |
| return uintParams[index]; |
| inline double RoutingParams::get<double>(unsigned index) const |
| return doubleParams[index]; |
| inline std::string RoutingParams::get<std::string>(unsigned index) const |
| return stringParams[index]; |