X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Fdevel-api%2Fvisual-factory%2Fvisual-base.cpp;h=c0c6d2bb4a5e7f83301e95cdc23c8cd1f2b24639;hb=2ffec8b73989656f70411ef1a99a721b6f86cd14;hp=88cb62666409c70d38995af4d3c7240508af7818;hpb=05e6b5073a18b6ebe1f536a3693300b3ee35b199;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/devel-api/visual-factory/visual-base.cpp b/dali-toolkit/devel-api/visual-factory/visual-base.cpp index 88cb626..c0c6d2b 100644 --- a/dali-toolkit/devel-api/visual-factory/visual-base.cpp +++ b/dali-toolkit/devel-api/visual-factory/visual-base.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017 Samsung Electronics Co., Ltd. + * Copyright (c) 2018 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. @@ -56,7 +56,7 @@ void Visual::Base::SetName( const std::string& name ) GetImplementation( *this ).SetName( name ); } -const std::string& Visual::Base::GetName() +const std::string& Visual::Base::GetName() const { return GetImplementation( *this ).GetName(); } @@ -96,6 +96,11 @@ void Visual::Base::CreatePropertyMap( Dali::Property::Map& map ) const GetImplementation( *this ).CreatePropertyMap( map ); } +Visual::Type Visual::Base::GetType() const +{ + return GetImplementation( *this ).GetType(); +} +