Update change log and spec for wrt-plugins-tizen_0.4.57
[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         const short WRONG_UNIT = 0xff;
38 }
39
40 struct DurationProperties
41 {
42         long long length;
43         short unit;
44         std::string unitStr;
45         DurationProperties()
46                 : length(0),
47                 unit(MSECS_UNIT), unitStr("MSECS")
48         {
49         }
50 };
51
52 typedef DPL::SharedPtr<DurationProperties> DurationPropertiesPtr;
53
54 } // Time
55 } // DeviceAPI
56
57 #endif //WRTPLUGINS_API_TIMEUTIL_DURATION_PROPERTIES_H_