Beta merge 2
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / Call / EventCallHistoryListener.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 #ifndef TIZENAPIS_API_CALL_EVENT_CALLHISTORY_LISTENER_H_
18 #define TIZENAPIS_API_CALL_EVENT_CALLHISTORY_LISTENER_H_
19
20 #include <vector>
21 #include <Commons/IEvent.h>
22 #include <dpl/shared_ptr.h>
23 #include <Commons/ListenerEvent.h>
24 #include <Commons/ListenerEventEmitter.h>
25 #include "CallHistoryEntryProperties.h"
26
27 namespace TizenApis {
28 namespace Api {
29 namespace Call {
30
31 class EventCallHistoryListener : public WrtDeviceApis::Commons::ListenerEvent<EventCallHistoryListener>
32 {
33 public:
34         typedef enum {
35                 ADDED,
36                 CHANGED
37         } ResultStates;
38
39 private:
40         ResultStates m_resultState;
41         Api::Call::CallHistoryEntryListPtr m_entryList;
42
43 public:
44         void setResultState(const ResultStates state);
45         void setResult(const Api::Call::CallHistoryEntryListPtr &entryList);
46         ResultStates getResultState() const;
47         Api::Call::CallHistoryEntryListPtr getResult() const;
48
49         EventCallHistoryListener();
50 };
51
52 typedef DPL::SharedPtr<EventCallHistoryListener> EventCallHistoryListenerPtr;
53 typedef WrtDeviceApis::Commons::ListenerEventEmitter<EventCallHistoryListener> EventCallHistoryListenerEmitter;
54 typedef DPL::SharedPtr<EventCallHistoryListenerEmitter> EventCallHistoryListenerEmitterPtr;
55
56 }
57 }
58 }
59
60 #endif