Revert "[Tizen] Added 'make clean' on each profile 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 #if defined(DEBUG_ENABLED)
35 Debug::Filter* TtsPlayer::gLogFilter = Debug::Filter::New(Debug::Concise, false, "LOG_TTS_PLAYER");
36 #endif
37
38 Dali::TtsPlayer TtsPlayer::New(Dali::TtsPlayer::Mode mode)
39 {
40   Dali::TtsPlayer player = Dali::TtsPlayer(new TtsPlayer(mode));
41
42   return player;
43 }
44
45 TtsPlayer::TtsPlayer(Dali::TtsPlayer::Mode mode)
46 : mStateChangedSignal()
47 {
48   DALI_LOG_ERROR("TTS is not implemented in UBUNTU profile.\n");
49 }
50
51 TtsPlayer::~TtsPlayer()
52 {
53 }
54
55 void TtsPlayer::Play(const std::string& text)
56 {
57 }
58
59 void TtsPlayer::Stop()
60 {
61 }
62
63 void TtsPlayer::Pause()
64 {
65 }
66
67 void TtsPlayer::Resume()
68 {
69 }
70
71 Dali::TtsPlayer::State TtsPlayer::GetState()
72 {
73   return Dali::TtsPlayer::UNAVAILABLE;
74 }
75
76 Dali::TtsPlayer::StateChangedSignalType& TtsPlayer::StateChangedSignal()
77 {
78   return mStateChangedSignal;
79 }
80
81 } // namespace Adaptor
82
83 } // namespace Internal
84
85 } // namespace Dali