Adaptor refactor
[platform/core/uifw/dali-adaptor.git] / dali / internal / accessibility / common / tts-player-impl.cpp
1 /*
2  * Copyright (c) 2017 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 #include <dali/internal/accessibility/common/tts-player-impl.h>
19 #include <dali/internal/accessibility/common/tts-player-factory.h>
20 namespace Dali
21 {
22
23 namespace Internal
24 {
25
26 namespace Adaptor
27 {
28
29 Dali::TtsPlayer TtsPlayer::New(Dali::TtsPlayer::Mode mode)
30 {
31   return Dali::TtsPlayer(TtsPlayerFactory::New(mode).release());
32 }
33
34 void TtsPlayer::Play(const std::string &text)
35 {
36
37 }
38
39 void TtsPlayer::Stop()
40 {
41
42 }
43
44 void TtsPlayer::Pause()
45 {
46
47 }
48
49 void TtsPlayer::Resume()
50 {
51
52 }
53
54 Dali::TtsPlayer::State TtsPlayer::GetState()
55 {
56   return Dali::TtsPlayer::State();
57 }
58
59 Dali::TtsPlayer::StateChangedSignalType& TtsPlayer::StateChangedSignal()
60 {
61   static Dali::TtsPlayer::StateChangedSignalType signal;
62   return signal;
63 }
64
65 }
66 }
67 }