mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-04-19 09:55:06 +00:00
10 lines
120 B
C++
10 lines
120 B
C++
#include "Tactility/Lock.h"
|
|
|
|
namespace tt {
|
|
|
|
ScopedLock Lock::asScopedLock() const {
|
|
return ScopedLock(*this);
|
|
}
|
|
|
|
}
|