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:
@ -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_{};
|
||||
|
Reference in New Issue
Block a user