Merge "Ensure BaseHandle class move noexcept (core public-api)" into devel/master
[platform/core/uifw/dali-core.git] / dali / public-api / animation / key-frames.cpp
index a4ef9bb..a700771 100644 (file)
 #include <dali/public-api/animation/key-frames.h>
 
 // INTERNAL INCLUDES
+#include <dali/internal/event/animation/key-frames-impl.h>
 #include <dali/public-api/animation/alpha-function.h>
 #include <dali/public-api/math/degree.h>
 #include <dali/public-api/math/radian.h>
-#include <dali/internal/event/animation/key-frames-impl.h>
 
 namespace Dali
 {
-
 KeyFrames KeyFrames::New()
 {
   Internal::KeyFrames* internal = Internal::KeyFrames::New();
   return KeyFrames(internal);
 }
 
-KeyFrames KeyFrames::DownCast( BaseHandle handle )
+KeyFrames KeyFrames::DownCast(BaseHandle handle)
 {
-  return KeyFrames( dynamic_cast<Dali::Internal::KeyFrames*>(handle.GetObjectPtr()) );
+  return KeyFrames(dynamic_cast<Dali::Internal::KeyFrames*>(handle.GetObjectPtr()));
 }
 
-KeyFrames::KeyFrames()
-{
-}
+KeyFrames::KeyFrames() = default;
 
-KeyFrames::~KeyFrames()
-{
-}
+KeyFrames::~KeyFrames() = default;
 
 KeyFrames::KeyFrames(const KeyFrames& handle) = default;
 
 KeyFrames& KeyFrames::operator=(const KeyFrames& rhs) = default;
 
-KeyFrames::KeyFrames( KeyFrames&& rhs ) = default;
+KeyFrames::KeyFrames(KeyFrames&& rhs) noexcept = default;
 
-KeyFrames& KeyFrames::operator=( KeyFrames&& rhs ) = default;
+KeyFrames& KeyFrames::operator=(KeyFrames&& rhs) noexcept = default;
 
 Property::Type KeyFrames::GetType() const
 {
@@ -61,7 +56,7 @@ Property::Type KeyFrames::GetType() const
 
 void KeyFrames::Add(float time, Property::Value value)
 {
-  Add(time, value, AlphaFunction::DEFAULT);
+  Add(time, std::move(value), AlphaFunction::DEFAULT);
 }
 
 void KeyFrames::Add(float time, Property::Value value, AlphaFunction alpha)
@@ -70,10 +65,8 @@ void KeyFrames::Add(float time, Property::Value value, AlphaFunction alpha)
 }
 
 KeyFrames::KeyFrames(Internal::KeyFrames* internal)
-  : BaseHandle(internal)
+: BaseHandle(internal)
 {
 }
 
-
-
-} // Dali
+} // namespace Dali