/* * stock.cpp * * Created on: 7 сент. 2022 г. * Author: alexander */ #include namespace zh { Server::Server(const unsigned short int port, const unsigned short int sizeBuffer) : _port(port) { _buffer = std::make_unique(sizeBuffer); } }