24a39c51eccdac0e93fe88bea7de1fdd73b9a09f
[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
26 namespace TizenApis {
27 namespace Tizen1_0 {
28 class ResponseDispatcher : 
29         public WrtDeviceApis::Commons::EventAnswerReceiver<Api::Call::EventFindCallHistory>,
30         public WrtDeviceApis::Commons::EventAnswerReceiver<Api::Call::EventRemoveBatch>
31 {
32 public:
33         static ResponseDispatcher& getInstance();
34
35         void OnAnswerReceived(const Api::Call::EventFindCallHistoryPtr& event);
36         void OnAnswerReceived(const Api::Call::EventRemoveBatchPtr& event);
37
38 protected:
39         ResponseDispatcher();
40 };
41 }
42 }
43
44 #endif
45