EHS/include/ehs/URI.h

15 lines
174 B
C
Raw Normal View History

2023-12-17 03:29:08 -08:00
#pragma once
#include "EHS.h"
#include "Str.h"
2023-12-17 15:56:13 -08:00
namespace ehs
2023-12-17 03:29:08 -08:00
{
class URI
{
public:
static Str_8 Encode(const Str_8& in);
static Str_8 Decode(const Str_8& in);
};
}