EEROS  0.4.1.0
API for the EEROS Real-Time Robotics Framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
System.hpp
Go to the documentation of this file.
1 #ifndef ORG_EEROS_CORE_SYSTEM_HPP_
2 #define ORG_EEROS_CORE_SYSTEM_HPP_
3 
4 #include <stdint.h>
5 
6 namespace eeros {
7 
8  class System {
9  public:
10  static double getClockResolution();
11  static double getTime();
12  static uint64_t getTimeNs();
13 
14  private:
15  System();
16  };
17 
18 };
19 
20 #endif /* ORG_EEROS_CORE_SYSTEM_HPP_ */
static double getTime()
Definition: System_POSIX.cpp:26
static double getClockResolution()
Definition: System_POSIX.cpp:18
static uint64_t getTimeNs()
Definition: System_POSIX.cpp:30
Definition: System.hpp:8