mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
41 lines
585 B
C++
41 lines
585 B
C++
|
#pragma once
|
||
|
|
||
|
#include <mutex>
|
||
|
|
||
|
namespace chatterino {
|
||
|
namespace util {
|
||
|
|
||
|
template <typename T>
|
||
|
class MutexValue
|
||
|
{
|
||
|
mutable std::mutex mutex;
|
||
|
T value;
|
||
|
|
||
|
public:
|
||
|
MutexValue()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
MutexValue(T &&val)
|
||
|
: value(val)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
T get() const
|
||
|
{
|
||
|
std::lock_guard<std::mutex> guard(this->mutex);
|
||
|
|
||
|
return this->value;
|
||
|
}
|
||
|
|
||
|
void set(const T &val)
|
||
|
{
|
||
|
std::lock_guard<std::mutex> guard(this->mutex);
|
||
|
|
||
|
this->value = val;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
} // namespace util
|
||
|
} // namespace chatterino
|