mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-24 07:47:49 -05:00
30 lines
1.0 KiB
C++
30 lines
1.0 KiB
C++
/*---------------------------------------------------------*\
|
|
| 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 09 May 2023 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-only |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#include "DeviceGuardManager.h"
|
|
|
|
DeviceGuardManager::DeviceGuardManager(DeviceGuard* guard_ptr) : guard(guard_ptr)
|
|
{
|
|
|
|
}
|
|
|
|
DeviceGuardManager::~DeviceGuardManager()
|
|
{
|
|
delete guard;
|
|
}
|
|
|
|
DeviceGuardLock DeviceGuardManager::AwaitExclusiveAccess()
|
|
{
|
|
return DeviceGuardLock(*guard);
|
|
}
|