Update copyright year to 2015 for public api: core
[platform/core/uifw/dali-core.git] / dali / public-api / events / gesture-detector.cpp
index 200e70a..0c27828 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2015 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.
@@ -42,6 +42,17 @@ GestureDetector::~GestureDetector()
 {
 }
 
+GestureDetector::GestureDetector(const GestureDetector& handle)
+: Handle(handle)
+{
+}
+
+GestureDetector& GestureDetector::operator=(const GestureDetector& rhs)
+{
+  BaseHandle::operator=(rhs);
+  return *this;
+}
+
 void GestureDetector::Attach(Actor actor)
 {
   GetImplementation(*this).Attach(GetImplementation(actor));