diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-10-24 11:30:35 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-10-27 16:42:58 +0200 |
commit | b15fe980671e028d0849e11878e0edf9a88669a5 (patch) | |
tree | 221cbd9964ff52e3ce85f1fda21d075d3f14b88d /compat/copyable-mutex.hpp | |
parent | 6d7679cf7c997237805022f828846164ff947a40 (diff) |
compat/mutex: rename
Diffstat (limited to 'compat/copyable-mutex.hpp')
-rw-r--r-- | compat/copyable-mutex.hpp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/compat/copyable-mutex.hpp b/compat/copyable-mutex.hpp new file mode 100644 index 00000000..af82876d --- /dev/null +++ b/compat/copyable-mutex.hpp @@ -0,0 +1,27 @@ +#pragma once + +#include <memory> + +#include <QMutex> + +#include "export.hpp" + +class OTR_COMPAT_EXPORT mutex +{ + std::unique_ptr<QMutex> inner; + +public: + enum mode + { + recursive = QMutex::Recursive, + normal = QMutex::NonRecursive, + }; + + mutex& operator=(const mutex& datum); + mutex(const mutex& datum); + mutex(mode m = normal); + + QMutex* operator&() const; + operator QMutex*() const; + QMutex* operator->() const; +}; |