Lugdunum
0.1.0
include
lug
System
Time.inl
Go to the documentation of this file.
1
inline
int64_t Time::getMicroseconds()
const
{
2
return
_microseconds;
3
}
4
5
template
<
typename
T>
6
inline
T Time::getMilliseconds()
const
{
7
return
static_cast<
T
>
(_microseconds / T(1000));
8
}
9
10
11
template
<
typename
T>
12
inline
T Time::getSeconds()
const
{
13
return
static_cast<
T
>
(_microseconds / T(1000000));
14
}
Generated by
1.8.13