URI class is now documented.

This commit is contained in:
Arron David Nelson 2024-02-01 20:03:10 -08:00
parent c7ddeff3fb
commit 0996f16482

View File

@ -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);
};
}