Public Member Functions | Public Attributes | List of all members
CRT::Timestamp Struct Reference

#include <Timer.h>

Public Member Functions

 Timestamp (const uint64_t timestamp)
 

Public Attributes

uint32_t lower
 
uint32_t upper
 

Detailed Description

Definition at line 20 of file Timer.h.

Constructor & Destructor Documentation

CRT::Timestamp::Timestamp ( const uint64_t  timestamp)
inline

Definition at line 23 of file Timer.h.

24  {
25  lower = timestamp; //Let the compiler strip off the upper 32 bits
26  upper = timestamp >> 32; //Push the lower 32 bits off the end of the number, then let the compiler
27  //strip off the remaining 32 bits
28  }
uint32_t lower
Definition: Timer.h:31
uint32_t upper
Definition: Timer.h:32

Member Data Documentation

uint32_t CRT::Timestamp::lower

Definition at line 31 of file Timer.h.

uint32_t CRT::Timestamp::upper

Definition at line 32 of file Timer.h.


The documentation for this struct was generated from the following file: