/*---------------------------------------------------------*\ | DeviceGuard.cpp | | | | An abstract interface for acquiring and releasing | | a guard on a device, serving as a foundation for | | implementing device-specific synchronization mechanisms. | | | | Evan Mulawski, 2023-09-05 | | | \*---------------------------------------------------------*/ #include "DeviceGuard.h" DeviceGuard::DeviceGuard() { } DeviceGuard::~DeviceGuard() { }