Git Init
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / TimeUtil / TZDateProperties.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_TZDATE_PROPERTIES_H_
21 #define WRTPLUGINS_API_TIMEUTIL_TZDATE_PROPERTIES_H_
22
23 #include <ctime>
24 #include <string>
25 #include <dpl/shared_ptr.h>
26
27 namespace TizenApis {
28 namespace Api {
29 namespace TimeUtil {
30         
31 struct TZDateProperties
32 {
33         long year;
34         long month;
35         long day;
36         long hours;
37         long minutes;
38         long seconds;
39         long milliseconds;
40         std::string timezone;
41         TZDateProperties()
42                 : year(0), month(0), day(0), hours(0), minutes(0), seconds(0), milliseconds(0),
43                 timezone("")
44         {
45         }
46 };
47
48
49 typedef DPL::SharedPtr<TZDateProperties> TZDatePropertiesPtr;
50
51 } //TimeUtil
52 } // Api
53 } // TizenApis
54
55 #endif //WRTPLUGINS_API_TIMEUTIL_TZDATE_PROPERTIES_H_