7 lines
183 B
C++
7 lines
183 B
C++
#include "GlobalIoService.h"
|
|
|
|
std::shared_ptr<boost::asio::io_service> getGlobalAsioIoService()
|
|
{
|
|
static auto ios = std::make_shared<boost::asio::io_service>();
|
|
return ios;
|
|
}
|