geekbrains_network_programming/lesson_03/source/stock.cpp

19 lines
281 B
C++
Raw Normal View History

2022-09-07 12:43:34 +00:00
/*
* stock.cpp
*
* Created on: 7 сент. 2022 г.
* Author: alexander
*/
#include <stock.hpp>
namespace zh
{
Server::Server(const unsigned short int port, const unsigned short int sizeBuffer) : _port(port)
{
_buffer = std::make_unique<Buffer>(sizeBuffer);
}
}