mirror of
https://github.com/momo5502/hypervisor.git
synced 2025-07-03 17:51:52 +00:00
Prepare hypervisor
This commit is contained in:
19
src/driver/hypervisor.hpp
Normal file
19
src/driver/hypervisor.hpp
Normal file
@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
|
||||
class hypervisor
|
||||
{
|
||||
public:
|
||||
hypervisor();
|
||||
~hypervisor();
|
||||
|
||||
hypervisor(hypervisor&& obj) noexcept = delete;
|
||||
hypervisor& operator=(hypervisor&& obj) noexcept = delete;
|
||||
|
||||
hypervisor(const hypervisor& obj) = delete;
|
||||
hypervisor& operator=(const hypervisor& obj) = delete;
|
||||
|
||||
void on_sleep();
|
||||
void on_wakeup();
|
||||
|
||||
private:
|
||||
};
|
Reference in New Issue
Block a user