mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
9 lines
231 B
C++
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 );
|
|
}
|