[dali_2.3.24] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / controls / popup / confirmation-popup.h
index 43bdae1..ebf6a65 100644 (file)
@@ -2,7 +2,7 @@
 #define DALI_TOOLKIT_CONFIRMATION_POPUP_H
 
 /*
- * Copyright (c) 2020 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2022 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -88,15 +88,31 @@ public:
 
   /**
    * @brief Copy constructor.
+   * @param[in] confirmationPopup The handle to copy from.
    */
   ConfirmationPopup(const ConfirmationPopup& confirmationPopup);
 
   /**
    * @brief Assignment operator.
+   * @param[in] confirmationPopup The handle to copy from.
+   * @return reference to this
    */
   ConfirmationPopup& operator=(const ConfirmationPopup& confirmationPopup);
 
   /**
+   * @brief Move constructor.
+   * @param[in] confirmationPopup The handle to move from.
+   */
+  ConfirmationPopup(ConfirmationPopup&& confirmationPopup);
+
+  /**
+   * @brief Move assignment operator.
+   * @param[in] confirmationPopup The handle to move from.
+   * @return reference to this
+   */
+  ConfirmationPopup& operator=(ConfirmationPopup&& confirmationPopup);
+
+  /**
    * @brief Destructor.
    *
    * This is non-virtual since derived types must not contain data or virtual methods.