Fix klocwork problems in Ubuntu build
[platform/core/uifw/dali-adaptor.git] / adaptors / ubuntu / tts-player-impl-ubuntu.cpp
1 /*
2  * Copyright (c) 2014 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 "tts-player-impl.h"
20
21 // EXTERNAL INCLUDES
22 #include <dali/public-api/object/type-registry.h>
23
24
25 namespace Dali
26 {
27
28 namespace Internal
29 {
30
31 namespace Adaptor
32 {
33
34 namespace // unnamed namespace
35 {
36 // Type Registration
37 Dali::BaseHandle Create()
38 {
39   return Dali::TtsPlayer::Get() ;
40 }
41
42 Dali::TypeRegistration mType( typeid(Dali::TtsPlayer), typeid(Dali::BaseHandle), Create ) ;
43 } // unnamed namespace
44
45 #if defined(DEBUG_ENABLED)
46 Debug::Filter* TtsPlayer::gLogFilter = Debug::Filter::New(Debug::Concise, false, "LOG_TTS_PLAYER");
47 #endif
48
49 Dali::TtsPlayer TtsPlayer::New(Dali::TtsPlayer::Mode mode)
50 {
51   Dali::TtsPlayer player = Dali::TtsPlayer(new TtsPlayer(mode));
52
53   return player;
54 }
55
56 TtsPlayer::TtsPlayer(Dali::TtsPlayer::Mode mode)
57 : mStateChangedSignal()
58 {
59   DALI_LOG_ERROR("TTS is not implemented in UBUNTU profile.");
60 }
61
62 TtsPlayer::~TtsPlayer()
63 {
64 }
65
66 void TtsPlayer::Play(const std::string& text)
67 {
68 }
69
70 void TtsPlayer::Stop()
71 {
72 }
73
74 void TtsPlayer::Pause()
75 {
76 }
77
78 void TtsPlayer::Resume()
79 {
80 }
81
82 Dali::TtsPlayer::State TtsPlayer::GetState()
83 {
84   return Dali::TtsPlayer::UNAVAILABLE;
85 }
86
87 Dali::TtsPlayer::StateChangedSignalType& TtsPlayer::StateChangedSignal()
88 {
89   return mStateChangedSignal;
90 }
91
92 } // namespace Adaptor
93
94 } // namespace Internal
95
96 } // namespace Dali
97