mirror-ac/user/report.cpp

10 lines
231 B
C++
Raw Normal View History

2023-08-18 07:33:13 +02:00
#include "report.h"
2023-08-18 09:18:00 +02:00
#include "common.h"
2023-08-18 07:33:13 +02:00
global::Report::Report( std::shared_ptr<global::ThreadPool> ThreadPool, LPTSTR PipeName )
{
this->thread_pool = ThreadPool;
2023-08-18 09:18:00 +02:00
this->client = std::make_shared<global::Client>( PipeName );
2023-08-18 07:33:13 +02:00
}