1#ifndef LOCKABLE_DOBJECT_H
2#define LOCKABLE_DOBJECT_H
Defines the DObject class, a universal data container for the project.
A universal data container class.
Definition DObject.h:29
void unlock()
Unlocks the mutex after thread-safe access.
Definition LockableDObject.cpp:20
DObject & get()
Access the underlying DObject.
Definition LockableDObject.cpp:6
void lock()
Locks the mutex to ensure thread-safe access.
Definition LockableDObject.cpp:13
LockableDObject()=default
Default constructor.