2e36243d3f6ebe67b6cd7b85d40cf5ceab224287
[platform/framework/web/wrt-plugins-tizen.git] / src / 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 DeviceAPI {
29 namespace Time {
30
31 namespace {
32         const short MSECS_UNIT= 0;
33         const short SECONDS_UNIT = 1;
34         const short MINUTES_UNIT = 2;
35         const short HOURS_UNIT = 3;
36         const short DAYS_UNIT = 4;
37
38 }
39
40 struct DurationProperties
41 {
42         long long length;
43         short unit;
44         DurationProperties()
45                 : length(0),
46                 unit(MSECS_UNIT)
47         {
48         }
49 };
50
51 typedef DPL::SharedPtr<DurationProperties> DurationPropertiesPtr;
52
53 } // Time
54 } // DeviceAPI
55
56 #endif //WRTPLUGINS_API_TIMEUTIL_DURATION_PROPERTIES_H_