From d8d7c8f421819212872c41134f71af8b9672a12f Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Mon, 13 Dec 2021 15:56:28 +1000 Subject: [PATCH] uri: add resolve and normalise stubs --- uri.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/uri.hpp b/uri.hpp index 4aaebe08..ed0a0035 100644 --- a/uri.hpp +++ b/uri.hpp @@ -97,6 +97,9 @@ namespace cruft { std::string m_value; }; + cruft::uri resolve (cruft::uri base, cruft::uri child); + cruft::uri normalise (cruft::uri); + std::ostream& operator<< (std::ostream&, uri const&); std::ostream& operator<< (std::ostream&, uri::component); }