From 0996f164820855f41524fb80b95e2b067b1513ff Mon Sep 17 00:00:00 2001 From: karutoh Date: Thu, 1 Feb 2024 20:03:10 -0800 Subject: [PATCH] URI class is now documented. --- include/ehs/URI.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/ehs/URI.h b/include/ehs/URI.h index 1dd683e..a46d8cf 100644 --- a/include/ehs/URI.h +++ b/include/ehs/URI.h @@ -8,8 +8,14 @@ namespace ehs class URI { public: + /// Encodes specialized characters in the URI. + /// @param [in] in The URI to encode. + /// @returns The encoded URI. static Str_8 Encode(const Str_8& in); + /// Decodes specialized characters back into their readable format. + /// @param [in] in The URI to decode. + /// @returns The decoded URI. static Str_8 Decode(const Str_8& in); }; } \ No newline at end of file