get_seconds_hires.h 289 B

123456789101112131415
  1. #ifndef IGL_GET_SECONDS_HIRES_H
  2. #define IGL_GET_SECONDS_HIRES_H
  3. #include "igl_inline.h"
  4. namespace igl
  5. {
  6. // Return the current time in seconds using performance counters
  7. IGL_INLINE double get_seconds_hires();
  8. }
  9. #ifdef IGL_HEADER_ONLY
  10. # include "get_seconds_hires.cpp"
  11. #endif
  12. #endif