Beta merge 2
[profile/ivi/wrt-plugins-tizen.git] / src / standards / Tizen / Call / ResponseDispatcher.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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 #ifndef TIZENAPIS_TIZEN_CALL_RESPONSEDISPATCHER_H_
19 #define TIZENAPIS_TIZEN_CALL_RESPONSEDISPATCHER_H_
20
21 #include <JavaScriptCore/JavaScript.h>
22 #include <Commons/EventReceiver.h>
23 #include <API/Call/EventFindCallHistory.h>
24 #include <API/Call/EventRemoveBatch.h>
25 #include <API/Call/EventRemoveAll.h>
26 #include <API/Call/EventLaunchDialer.h>
27 #include <API/Call/EventSendUSSD.h>
28
29 namespace TizenApis {
30 namespace Tizen1_0 {
31 class ResponseDispatcher : 
32         public WrtDeviceApis::Commons::EventAnswerReceiver<Api::Call::EventFindCallHistory>,
33         public WrtDeviceApis::Commons::EventAnswerReceiver<Api::Call::EventRemoveBatch>,
34         public WrtDeviceApis::Commons::EventAnswerReceiver<Api::Call::EventRemoveAll>,
35         public WrtDeviceApis::Commons::EventAnswerReceiver<Api::Call::EventLaunchDialer>,
36         public WrtDeviceApis::Commons::EventAnswerReceiver<Api::Call::EventSendUSSD>
37 {
38 public:
39         static ResponseDispatcher& getInstance();
40
41         void OnAnswerReceived(const Api::Call::EventFindCallHistoryPtr& event);
42         void OnAnswerReceived(const Api::Call::EventRemoveBatchPtr& event);
43         void OnAnswerReceived(const Api::Call::EventRemoveAllPtr& event);
44         void OnAnswerReceived(const Api::Call::EventLaunchDialerPtr& event);
45         void OnAnswerReceived(const Api::Call::EventSendUSSDPtr& event);
46
47 protected:
48         ResponseDispatcher();
49 };
50 }
51 }
52
53 #endif
54