Git Init
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / TimeUtil / EventSetCurrentTZDate.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
19
20 #ifndef WRTPLUGINS_API_TIMEUTIL_EVENT_SET_CURRENT_TZDATE_H_
21 #define WRTPLUGINS_API_TIMEUTIL_EVENT_SET_CURRENT_TZDATE_H_
22
23 #include <Commons/IEvent.h>
24 #include <dpl/shared_ptr.h>
25 #include "TZDateProperties.h"
26
27 namespace TizenApis {
28 namespace Api {
29 namespace TimeUtil {
30
31 class EventSetCurrentTZDate : public WrtDeviceApis::Commons::IEvent<EventSetCurrentTZDate>
32 {
33     bool             m_result;
34     TZDateProperties m_properties;
35 public:
36         
37     EventSetCurrentTZDate() : m_result(false) { LogDebug("entered"); }
38     ~EventSetCurrentTZDate() { }
39     void             setResult(bool value) { m_result = value; }
40     bool             getResult() const { return m_result; }
41     TZDateProperties                getTZDateProperties() const { return  m_properties;}
42     void                setTZDateProperties(const TZDateProperties &value) {m_properties = value;}
43     virtual void    clearOnCancel(){;}
44 };
45
46 typedef DPL::SharedPtr<EventSetCurrentTZDate> EventSetCurrentTZDatePtr;
47
48 } //TimeUtil
49 } // Api
50 } // TizenApis
51
52 #endif //WRTPLUGINS_API_TIMEUTIL_EVENT_SET_CURRENT_DATETIME_H_