[Tizen] Adds transition effect
[platform/core/uifw/dali-core.git] / dali / public-api / actors / custom-actor-impl.cpp
index 1ff533b..d42e57e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2020 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2021 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.
@@ -83,4 +83,14 @@ bool CustomActorImpl::RelayoutDependentOnChildrenBase(Dimension::Type dimension)
   return mOwner->RelayoutDependentOnChildrenBase(dimension);
 }
 
+void CustomActorImpl::SetTransparent(bool transparent)
+{
+  mOwner->SetTransparent(transparent);
+}
+
+bool CustomActorImpl::GetTransparent() const
+{
+  return mOwner->GetTransparent();
+}
+
 } // namespace Dali