EHS/include/ehs/URI.h

15 lines
174 B
C
Raw Normal View History

2024-01-31 22:28:19 -08:00
#pragma once
#include "EHS.h"
#include "Str.h"
namespace ehs
{
class URI
{
public:
static Str_8 Encode(const Str_8& in);
static Str_8 Decode(const Str_8& in);
};
}