Beta merge 2
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / Calendar / EventAlarm.cpp
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 #include "EventAlarm.h"
19 #include <dpl/log/log.h>
20
21 namespace TizenApis {
22 namespace Api {
23 namespace Calendar {
24
25 EventAlarm::EventAlarm()
26 {
27     m_absoluteDate = 0;
28 }
29 EventAlarm::~EventAlarm()
30 {
31 }
32
33 std::time_t EventAlarm::getAbsoluteDate() const
34 {
35     return m_absoluteDate;
36 }
37 void EventAlarm::setAbsoluteDate(const std::time_t &value)
38 {
39     m_absoluteDate = value;
40 }
41
42 TizenApis::Api::TimeUtil::DurationProperties EventAlarm::getDuration() const
43 {
44     return m_duration;
45 }
46 void EventAlarm::setDuration(TizenApis::Api::TimeUtil::DurationProperties value)
47 {
48     m_duration = value;
49 }
50
51 std::vector<CalendarEvent::EventAlarmType> EventAlarm::getMethods() const
52 {
53     return m_methods;
54 }
55 void EventAlarm::setMethods(const std::vector<CalendarEvent::EventAlarmType> &value)
56 {
57     m_methods = value;
58 }
59
60 std::string EventAlarm::getTimeZone() const
61 {
62     return m_timeZone;
63 }
64 void EventAlarm::setTimeZone(const std::string &value)
65 {
66     m_timeZone = value;
67 }
68
69 std::string EventAlarm::getDescription() const
70 {
71     return m_description;
72 }
73 void EventAlarm::setDescription(const std::string &value)
74 {
75     m_description = value;
76 }
77
78 }
79 }
80 }