diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-03-05 23:44:31 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-03-05 23:44:31 +0100 |
commit | 743e66a3469af27819bcd0e3e1694d2a4c523c6b (patch) | |
tree | f6ae7e4122eb5ff249d699bc2c786e2d5a7e35b7 /src/ClockTAI.h | |
parent | 0957760c42cc04d9c295b649b039015186b25609 (diff) | |
download | dabmux-743e66a3469af27819bcd0e3e1694d2a4c523c6b.tar.gz dabmux-743e66a3469af27819bcd0e3e1694d2a4c523c6b.tar.bz2 dabmux-743e66a3469af27819bcd0e3e1694d2a4c523c6b.zip |
Use std::chrono in ClockTAI
Diffstat (limited to 'src/ClockTAI.h')
-rw-r--r-- | src/ClockTAI.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/ClockTAI.h b/src/ClockTAI.h index 027e6db..499fa56 100644 --- a/src/ClockTAI.h +++ b/src/ClockTAI.h @@ -37,9 +37,10 @@ #include <stdint.h> #include <stdlib.h> #include <sstream> -#include <time.h> +#include <chrono> -// EDI needs to know UTC-TAI, but doesn't need the CLOCK_TAI to be set +// EDI needs to know UTC-TAI, but doesn't need the CLOCK_TAI to be set. +// We can keep this code, maybe for future use #define SUPPORT_SETTING_CLOCK_TAI 0 /* Loads, parses and represents TAI-UTC offset information from the USNO bulletin */ @@ -65,7 +66,7 @@ class ClockTAI { int m_offset; std::stringstream m_bulletin; - struct timespec m_bulletin_download_time; + std::chrono::system_clock::time_point m_bulletin_download_time; // Load bulletin into m_bulletin, return 0 on success int download_tai_utc_bulletin(const char* url); |