Data type for time in seconds with a 'fractional' millisecond precision.
More...
Data type for time in seconds with a 'fractional' millisecond precision.
#include <ElapsedTime.h>
|
unsigned long | m_seconds |
| Total number of elapsed seconds.
|
|
uint16_t | m_thousandths |
| fractional number of milliseconds (i.e.
|
|
◆ Precision_T() [1/4]
Cpl::System::ElapsedTime::Precision_T::Precision_T |
( |
| ) |
|
|
inline |
Constructor (to ensure any pad bytes get zero'd)
◆ Precision_T() [2/4]
Cpl::System::ElapsedTime::Precision_T::Precision_T |
( |
unsigned long |
seconds, |
|
|
uint16_t |
thousandths |
|
) |
| |
|
inline |
Constructor (to ensure any pad bytes get zero'd)
◆ Precision_T() [3/4]
Cpl::System::ElapsedTime::Precision_T::Precision_T |
( |
uint64_t |
flatTimeInMs | ) |
|
|
inline |
Constructor (to ensure any pad bytes get zero'd)
◆ Precision_T() [4/4]
Cpl::System::ElapsedTime::Precision_T::Precision_T |
( |
const Precision_T & |
other | ) |
|
|
inline |
Copy Constructor (to ensure any pad bytes get zero'd)
◆ asFlatTime()
uint64_t Cpl::System::ElapsedTime::Precision_T::asFlatTime |
( |
| ) |
const |
|
inline |
Converts the instance's time into as a single 'large' integer value in milliseconds.
◆ asMilliseconds()
unsigned long Cpl::System::ElapsedTime::Precision_T::asMilliseconds |
( |
| ) |
const |
|
inline |
Converts the instance's time to milliseconds.
The result CAN be incorrect if the actual number of milliseconds is greater than what can be stored in an unsigned long (e.g. a 32 bit unsigned integer can only contain ~47 days 'of milliseconds'). USE WITH CAUTION.
◆ operator!=()
bool Cpl::System::ElapsedTime::Precision_T::operator!= |
( |
Precision_T const |
other | ) |
const |
|
inline |
◆ operator+=()
Increment elapsed time by 'x'.
◆ operator<()
bool Cpl::System::ElapsedTime::Precision_T::operator< |
( |
Precision_T const |
other | ) |
const |
less than (i.e. is this instance older then 'other')
◆ operator<=()
bool Cpl::System::ElapsedTime::Precision_T::operator<= |
( |
Precision_T const |
other | ) |
const |
less than or equal (i.e. is this instance the same as 'other' or is it older then 'other')
◆ operator=() [1/2]
◆ operator=() [2/2]
Precision_T & Cpl::System::ElapsedTime::Precision_T::operator= |
( |
uint32_t |
milliseconds | ) |
|
Assign my value based on total milliseconds.
◆ operator==()
bool Cpl::System::ElapsedTime::Precision_T::operator== |
( |
Precision_T const |
other | ) |
const |
|
inline |
Comparison operator (explicitly provided to avoid potential issue with pad bytes in the structure)
◆ operator>()
bool Cpl::System::ElapsedTime::Precision_T::operator> |
( |
Precision_T const |
other | ) |
const |
Greater than (i.e. is this instance newer/more-recent then 'other')
◆ operator>=()
bool Cpl::System::ElapsedTime::Precision_T::operator>= |
( |
Precision_T const |
other | ) |
const |
Greater than or equal (i.e. is this instance the same as 'other' or is it newer/more-recent then 'other')
◆ setFlatTime()
void Cpl::System::ElapsedTime::Precision_T::setFlatTime |
( |
uint64_t |
flatTimeInMs | ) |
|
|
inline |
Sets the instance's time from a single 'large' integer value in milliseconds.
◆ setFromMilliseconds()
Precision_T & Cpl::System::ElapsedTime::Precision_T::setFromMilliseconds |
( |
uint32_t |
milliseconds | ) |
|
Sets the Precision value from a millisecond value.
◆ m_seconds
unsigned long Cpl::System::ElapsedTime::Precision_T::m_seconds |
Total number of elapsed seconds.
◆ m_thousandths
uint16_t Cpl::System::ElapsedTime::Precision_T::m_thousandths |
fractional number of milliseconds (i.e.
a value between 0 and 999)
The documentation for this struct was generated from the following file: