Adaptor namespaces fixed.
[platform/core/uifw/dali-adaptor.git] / text / dali / internal / text-abstraction / shaping-impl.cpp
1 /*
2  * Copyright (c) 2015 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS  HEADER
19 #include "shaping-impl.h"
20
21 // INTERNAL INCLUDES
22 #include <singleton-service-impl.h>
23
24 namespace Dali
25 {
26
27 namespace TextAbstraction
28 {
29
30 namespace Internal
31 {
32
33 Shaping::Shaping()
34 : mPlugin( NULL )
35 {
36
37 }
38
39 Shaping::~Shaping()
40 {
41
42 }
43
44 TextAbstraction::Shaping Shaping::Get()
45 {
46   TextAbstraction::Shaping shapingHandle;
47
48   SingletonService service( SingletonService::Get() );
49   if( service )
50   {
51     // Check whether the singleton is already created
52     Dali::BaseHandle handle = service.GetSingleton( typeid( TextAbstraction::Shaping ) );
53     if( handle )
54     {
55       // If so, downcast the handle
56       Shaping* impl = dynamic_cast< Internal::Shaping* >( handle.GetObjectPtr() );
57       shapingHandle = TextAbstraction::Shaping( impl );
58     }
59     else // create and register the object
60     {
61       shapingHandle = TextAbstraction::Shaping( new Shaping );
62       service.Register( typeid( shapingHandle ), shapingHandle );
63     }
64   }
65
66   return shapingHandle;
67 }
68
69 } // namespace Internal
70
71 } // namespace TextAbstraction
72
73 } // namespace Dali