mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
7 lines
290 B
C++
7 lines
290 B
C++
#include "kmanager.h"
|
|
|
|
kernelmode::KManager::KManager( LPCWSTR DriverName, std::shared_ptr<global::ThreadPool> ThreadPool, std::shared_ptr<global::Report> ReportInterface)
|
|
{
|
|
this->driver_interface = std::make_unique<Driver>(DriverName, ReportInterface);
|
|
this->thread_pool = ThreadPool;
|
|
}
|