mirror-ac/user/km/kmanager.cpp

8 lines
290 B
C++
Raw Normal View History

2023-08-17 10:45:50 +02:00
#include "kmanager.h"
2023-08-18 07:33:13 +02:00
kernelmode::KManager::KManager( LPCWSTR DriverName, std::shared_ptr<global::ThreadPool> ThreadPool, std::shared_ptr<global::Report> ReportInterface)
2023-08-17 10:45:50 +02:00
{
2023-08-18 07:33:13 +02:00
this->driver_interface = std::make_unique<Driver>(DriverName, ReportInterface);
2023-08-17 10:45:50 +02:00
this->thread_pool = ThreadPool;
}