mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-03-22 15:05:03 +01:00
13 lines
207 B
C++
13 lines
207 B
C++
#include "network/manager.h"
|
|
#include "network/tcp.h"
|
|
|
|
network::manager::manager()
|
|
{
|
|
servers.emplace_back(std::make_shared<tcp_server>(io_context));
|
|
}
|
|
|
|
void network::manager::poll()
|
|
{
|
|
io_context.poll();
|
|
}
|