| 24 | std::string const & GetHost() const { return m_host; } |
| 25 | std::string const & GetPath() const { return m_path; } |
| 26 | std::string GetHostAndPath() const { return m_host + '/' + m_path; } |
| 27 | |
| 28 | template <class FnT> |
| 29 | void ForEachParam(FnT && fn) const |