Git Init
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / TimeUtil / DurationProperties.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_DURATION_PROPERTIES_H_
21 #define WRTPLUGINS_API_TIMEUTIL_DURATION_PROPERTIES_H_
22
23 #include <dpl/shared_ptr.h>
24 #include <string>
25
26 using namespace std;
27
28 namespace {
29         const short MSECS_UNIT= 0;
30         const short SECONDS_UNIT = 1;
31         const short MINUTES_UNIT = 2;
32         const short HOURS_UNIT = 3;
33         const short DAYS_UNIT = 4;
34
35 }
36
37 namespace TizenApis {
38 namespace Api {
39 namespace TimeUtil {
40         
41
42 struct DurationProperties
43 {
44         long long length;
45         short unit;
46         DurationProperties()
47                 : length(0),
48                 unit(MSECS_UNIT)
49         {
50         }
51 };
52
53 typedef DPL::SharedPtr<DurationProperties> DurationPropertiesPtr;
54
55 } //TimeUtil
56 } // Api
57 } // TizenApis
58
59 #endif //WRTPLUGINS_API_TIMEUTIL_DURATION_PROPERTIES_H_