Merge "Remove use of boost thread local storage from debug" into tizen
[platform/core/uifw/dali-core.git] / dali / public-api / object / object-registry.cpp
index 9ad8a2e..6bb320f 100644 (file)
@@ -24,9 +24,6 @@
 namespace Dali
 {
 
-const char* const ObjectRegistry::SIGNAL_OBJECT_CREATED = "object-created";
-const char* const ObjectRegistry::SIGNAL_OBJECT_DESTROYED = "object-destroyed";
-
 ObjectRegistry::ObjectRegistry()
 {
 }
@@ -35,12 +32,23 @@ ObjectRegistry::~ObjectRegistry()
 {
 }
 
-ObjectRegistry::ObjectCreatedSignalV2& ObjectRegistry::ObjectCreatedSignal()
+ObjectRegistry::ObjectRegistry(const ObjectRegistry& copy)
+: BaseHandle(copy)
+{
+}
+
+ObjectRegistry& ObjectRegistry::operator=(const ObjectRegistry& rhs)
+{
+  BaseHandle::operator=(rhs);
+  return *this;
+}
+
+ObjectRegistry::ObjectCreatedSignalType& ObjectRegistry::ObjectCreatedSignal()
 {
   return GetImplementation(*this).ObjectCreatedSignal();
 }
 
-ObjectRegistry::ObjectDestroyedSignalV2& ObjectRegistry::ObjectDestroyedSignal()
+ObjectRegistry::ObjectDestroyedSignalType& ObjectRegistry::ObjectDestroyedSignal()
 {
   return GetImplementation(*this).ObjectDestroyedSignal();
 }