Support for ASTC compressed textures wrapped in KTX files
[platform/core/uifw/dali-core.git] / dali / public-api / object / property-notification.cpp
index a210344..81e0538 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.
@@ -48,6 +48,17 @@ PropertyNotification::~PropertyNotification()
 {
 }
 
+PropertyNotification::PropertyNotification(const PropertyNotification& copy)
+: BaseHandle(copy)
+{
+}
+
+PropertyNotification& PropertyNotification::operator=(const PropertyNotification& rhs)
+{
+  BaseHandle::operator=(rhs);
+  return *this;
+}
+
 PropertyCondition PropertyNotification::GetCondition()
 {
   return GetImplementation(*this).GetCondition();
@@ -83,7 +94,7 @@ bool PropertyNotification::GetNotifyResult() const
   return GetImplementation(*this).GetNotifyResult();
 }
 
-PropertyNotifySignalV2& PropertyNotification::NotifySignal()
+PropertyNotifySignalType& PropertyNotification::NotifySignal()
 {
   return GetImplementation(*this).NotifySignal();
 }