sync with tizen_2.0
[platform/framework/native/appfw.git] / src / system / inc / FSys_SystemTimeImpl.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  * @file                FSys_SystemTimeImpl.h
20  * @brief               This is the header file for _SystemTimeImpl class.
21  */
22
23 #ifndef _FSYSTEM_INTERNAL_SYSTEMTIME_IMPL_H_
24 #define _FSYSTEM_INTERNAL_SYSTEMTIME_IMPL_H_
25
26 #include <FOspConfig.h>
27 #include <FSysSystemTime.h>
28
29 namespace Tizen { namespace System
30 {
31
32
33 class _OSP_EXPORT_ _SystemTimeImpl
34 {
35 public:
36         _SystemTimeImpl(void);
37
38         virtual ~_SystemTimeImpl(void);
39         static result GetUptime(Tizen::Base::TimeSpan& uptime);
40         static result GetCurrentTime(TimeMode timeMode, Tizen::Base::DateTime& currentTime);
41         static result GetCurrentTime(Tizen::Base::DateTime& currentTime);
42         static result SetCurrentTime(const Tizen::Base::DateTime& currentTime);
43         static result GetTicks(long long& ticks);
44         static result GetNanoTicks(long long& nanoTicks);
45
46         static _SystemTimeImpl* GetInstance(SystemTime& systemtime);
47         static const _SystemTimeImpl* GetInstance(const SystemTime& systemtime);
48
49 private:
50 };
51
52
53 } } // Tizen::Sys
54
55 #endif //_FSYSTEM_INTERNAL_SYSTEMTIME_IMPL_H_