Follow the include-order coding conventions
[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 {
58   DALI_LOG_ERROR("TTS is not implemented in UBUNTU profile.");
59 }
60
61 TtsPlayer::~TtsPlayer()
62 {
63 }
64
65 void TtsPlayer::Play(const std::string& text)
66 {
67 }
68
69 void TtsPlayer::Stop()
70 {
71 }
72
73 void TtsPlayer::Pause()
74 {
75 }
76
77 void TtsPlayer::Resume()
78 {
79 }
80
81 } // namespace Adaptor
82
83 } // namespace Internal
84
85 } // namespace Dali
86