mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-05-24 22:45:55 -04:00
Generic device guard; use Corsair implementation for all Corsair HID cooling-capable controllers
This commit is contained in:
committed by
Adam Honse
parent
c5c5bf519b
commit
f672397563
27
interop/DeviceGuardManager.cpp
Normal file
27
interop/DeviceGuardManager.cpp
Normal file
@@ -0,0 +1,27 @@
|
||||
/*---------------------------------------------------------*\
|
||||
| DeviceGuardManager.cpp |
|
||||
| |
|
||||
| Responsible for managing a DeviceGuard implementation, |
|
||||
| allowing clients to wait for exclusive access to a |
|
||||
| device using the DeviceGuardLock it provides. |
|
||||
| |
|
||||
| Evan Mulawski, 2023-09-05 |
|
||||
| |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "DeviceGuardManager.h"
|
||||
|
||||
DeviceGuardManager::DeviceGuardManager(DeviceGuard* guard_ptr) : guard(guard_ptr)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
DeviceGuardManager::~DeviceGuardManager()
|
||||
{
|
||||
delete guard;
|
||||
}
|
||||
|
||||
DeviceGuardLock DeviceGuardManager::AwaitExclusiveAccess()
|
||||
{
|
||||
return DeviceGuardLock(*guard);
|
||||
}
|
||||
Reference in New Issue
Block a user