stuff-from-scratch/src/base/network/sockets/SocketInterface.h
2023-01-27 17:04:39 +00:00

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>;