Merge "Clean up the code to build successfully on macOS" into devel/master
[platform/core/uifw/dali-core.git] / dali / public-api / events / gesture.cpp
index 5378e21..20c1ca4 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2020 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.
 // CLASS HEADER
 #include <dali/public-api/events/gesture.h>
 
+// INTERNAL INCLUDES
+#include <dali/internal/event/events/gesture-impl.h>
+
 namespace Dali
 {
+Gesture::Gesture() = default;
 
-Gesture::Gesture( const Gesture& rhs )
-: type(rhs.type),
-  state(rhs.state),
-  time(rhs.time)
+Gesture::Gesture(Internal::Gesture* internal)
+: BaseHandle(internal)
 {
 }
 
-Gesture& Gesture::operator=( const Gesture& rhs )
-{
-  type = rhs.type;
-  state = rhs.state;
-  time = rhs.time;
+Gesture::Gesture(const Gesture& rhs) = default;
+
+Gesture::Gesture(Gesture&& rhs) = default;
+
+Gesture& Gesture::operator=(const Gesture& rhs) = default;
 
-  return *this;
+Gesture& Gesture::operator=(Gesture&& rhs) = default;
+
+Gesture::~Gesture() = default;
+
+GestureType::Value Gesture::GetType() const
+{
+  return GetImplementation(*this).GetType();
 }
 
-Gesture::~Gesture()
+GestureState Gesture::GetState() const
 {
+  return GetImplementation(*this).GetState();
 }
 
-Gesture::Gesture(Type gestureType, State gestureState)
-: type(gestureType),
-  state(gestureState),
-  time(0)
+uint32_t Gesture::GetTime() const
 {
+  return GetImplementation(*this).GetTime();
 }
 
 } // namespace Dali