DALi signals refactor to remove V2 naming
[platform/core/uifw/dali-core.git] / dali / public-api / events / pan-gesture-detector.cpp
index 1edbffe..76b63c4 100644 (file)
@@ -59,6 +59,17 @@ PanGestureDetector::~PanGestureDetector()
 {
 }
 
+PanGestureDetector::PanGestureDetector(const PanGestureDetector& handle)
+: GestureDetector(handle)
+{
+}
+
+PanGestureDetector& PanGestureDetector::operator=(const PanGestureDetector& rhs)
+{
+  BaseHandle::operator=(rhs);
+  return *this;
+}
+
 void PanGestureDetector::SetMinimumTouchesRequired(unsigned int minimum)
 {
   GetImplementation(*this).SetMinimumTouchesRequired(minimum);
@@ -109,7 +120,7 @@ void PanGestureDetector::RemoveDirection( Radian direction )
   GetImplementation(*this).RemoveDirection( direction );
 }
 
-PanGestureDetector::DetectedSignalV2& PanGestureDetector::DetectedSignal()
+PanGestureDetector::DetectedSignalType& PanGestureDetector::DetectedSignal()
 {
   return GetImplementation(*this).DetectedSignal();
 }