Clean up the code to build successfully on macOS
[platform/core/uifw/dali-core.git] / dali / devel-api / threading / mutex.h
index b829b8b..925f363 100644 (file)
@@ -43,6 +43,16 @@ public:
   ~Mutex();
 
   /**
+   * @brief Move constructor
+   */
+  Mutex(Mutex&& rhs) noexcept;
+
+  /**
+   * @brief Move assignment
+   */
+  Mutex &operator=(Mutex&& rhs) noexcept;
+
+  /**
    * @brief Check if the mutex is locked
    * @return true if the mutex is locked
    */