15 lines
174 B
C
15 lines
174 B
C
|
#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);
|
||
|
};
|
||
|
}
|