get_seconds.h 259 B

12345678910111213141516
  1. #ifndef IGL_GET_SECONDS_H
  2. #define IGL_GET_SECONDS_H
  3. #include "igl_inline.h"
  4. namespace igl
  5. {
  6. // Return the current time in seconds since program start
  7. IGL_INLINE double get_seconds();
  8. }
  9. #ifdef IGL_HEADER_ONLY
  10. # include "get_seconds.cpp"
  11. #endif
  12. #endif