1
0
mirror of https://github.com/momo5502/hypervisor.git synced 2025-07-04 18:21:55 +00:00

Support multiple instances

This commit is contained in:
Maurice Heumann
2022-12-28 08:38:51 +01:00
parent 4cde82aae1
commit a3f67b20b8
3 changed files with 43 additions and 10 deletions

View File

@ -14,6 +14,11 @@ public:
driver(driver&& obj) noexcept = default;;
driver& operator=(driver&& obj) noexcept = default;
operator bool() const
{
return this->service_;
}
private:
service_handle manager_{};
service_handle service_{};