2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 * @file OnAddEventsChanged.h
25 #ifndef _ON_ADD_EVENTS_CHANGED_H_
26 #define _ON_ADD_EVENTS_CHANGED_H_
29 #include <Commons/IEvent.h>
30 #include <dpl/shared_ptr.h>
31 #include <Commons/ListenerEvent.h>
32 #include <Commons/ListenerEventEmitter.h>
39 class OnAddEventsChanged : public WrtDeviceApis::Commons::ListenerEvent<OnAddEventsChanged>
50 void setResult (bool value) {
53 bool getResult() const {
57 void setEvent(EventAccountPtr value) {
60 EventAccountPtr getEvent() const {
64 void setStatus(EventAddStatus value) {
67 EventAddStatus getStatus() const {
71 OnAddEventsChanged() : m_result(false) {
73 ~OnAddEventsChanged() {
77 EventAccountPtr m_event;
78 EventAddStatus m_status;
82 typedef DPL::SharedPtr<OnAddEventsChanged> OnAddEventsChangedPtr;
83 typedef WrtDeviceApis::Commons::ListenerEventEmitter<OnAddEventsChanged> OnAddEventsChangedEmitter;
84 typedef DPL::SharedPtr<OnAddEventsChangedEmitter> OnAddEventsChangedEmitterPtr;
90 #endif //_ON_ADD_EVENTS_CHANGED_H_