17 lines
288 B
C++
17 lines
288 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
class Socket;
|
|
using SocketPtr = std::unique_ptr<Socket>;
|
|
|
|
class ISocketInterface
|
|
{
|
|
public:
|
|
ISocketInterface() = default;
|
|
|
|
virtual ~ISocketInterface() = default;
|
|
};
|
|
|
|
using ISocketInterfaceUPtr = std::unique_ptr<ISocketInterface>;
|