Merge "Ensure BaseHandle class move noexcept (core public-api)" into devel/master
[platform/core/uifw/dali-core.git] / dali / public-api / actors / custom-actor.h
index 8ab1a3a..329840e 100644 (file)
@@ -43,7 +43,6 @@ class CustomActor;
 class DALI_CORE_API CustomActor : public Actor
 {
 public:
-
   /**
    * @brief Creates an uninitialized CustomActor handle.
    *
@@ -63,7 +62,7 @@ public:
    * @param[in] handle Handle to an object
    * @return Handle to a CustomActor or an uninitialized handle
    */
-  static CustomActor DownCast( BaseHandle handle );
+  static CustomActor DownCast(BaseHandle handle);
 
   /**
    * @brief Destructor.
@@ -94,7 +93,6 @@ public:
    *
    * @SINCE_1_0.0
    * @param[in] implementation The implementation for this custom actor
-   * @return A handle to a newly allocated Dali resource
    */
   CustomActor(CustomActorImpl& implementation);
 
@@ -121,7 +119,7 @@ public:
    * @SINCE_1_9.22
    * @param[in] rhs The actor to move
    */
-  CustomActor( CustomActor&& rhs );
+  CustomActor(CustomActor&& rhs) noexcept;
 
   /**
    * @brief Move assignment operator.
@@ -130,10 +128,9 @@ public:
    * @param[in] rhs The actor to move
    * @return A reference to this
    */
-  CustomActor& operator=( CustomActor&& rhs );
+  CustomActor& operator=(CustomActor&& rhs) noexcept;
 
 public: // Not intended for application developers
-
   /**
    * @brief This constructor is used internally to create additional CustomActor handles.
    *