mirror-ac/user/report.cpp
lhodges1 114a894d97 OMG
2023-08-18 18:39:21 +10:00

9 lines
231 B
C++

#include "report.h"
#include "common.h"
global::Report::Report( std::shared_ptr<global::ThreadPool> ThreadPool, LPTSTR PipeName )
{
this->thread_pool = ThreadPool;
this->client = std::make_shared<global::Client>( PipeName );
}