diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-12-20 18:30:37 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-12-24 19:31:24 +0100 |
commit | ea29ea8095e1fe6e7c1766f87aea33650a1a485d (patch) | |
tree | b6a908b371b7139d4f58be814f1de44807bb5f98 /compat/copyable-mutex.hpp | |
parent | 0fbca6ba484194a9c16c43bc93d70590702c0a99 (diff) |
compat/mutex: rename
Diffstat (limited to 'compat/copyable-mutex.hpp')
-rw-r--r-- | compat/copyable-mutex.hpp | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/compat/copyable-mutex.hpp b/compat/copyable-mutex.hpp deleted file mode 100644 index 37e6802b..00000000 --- a/compat/copyable-mutex.hpp +++ /dev/null @@ -1,23 +0,0 @@ -#pragma once - -#include <QMutex> - -#include "export.hpp" - -class OTR_COMPAT_EXPORT mutex -{ - mutable QMutex inner; - -public: - using RecursionMode = QMutex::RecursionMode; - static constexpr inline RecursionMode Recursive = RecursionMode::Recursive; - static constexpr inline RecursionMode NonRecursive = RecursionMode::NonRecursive; - - mutex& operator=(const mutex& datum); - mutex(const mutex& datum); - explicit mutex(RecursionMode m); - - QMutex* operator&() const; - operator QMutex*() const; - QMutex* operator->() const; -}; |