14 lines
203 B
C++
14 lines
203 B
C++
#pragma once
|
|
|
|
#include "EHS.h"
|
|
#include "Str.h"
|
|
#include "Socket.h"
|
|
|
|
namespace ehs
|
|
{
|
|
class DNS
|
|
{
|
|
public:
|
|
static Str_8 Resolve(const AddrType addrType, const Str_8& hostName);
|
|
};
|
|
} |