/************************************************************************* Copyright (c) 2013 by CNRS/LESIA This software is copyrighted by and is the sole property of CNRS/LESIA. All rights, title, ownership, or other interests in the software remain the property of CNRS/LESIA. This software may only be used in accordance with the corresponding license agreement. Any unauthorized use, duplication, transmission, distribution, or disclosure of this software is expressly forbidden. This Copyright notice may not be removed or modified without prior written consent of CNRS/LESIA. LESIA Observatoire de Meudon 5 place Jules Janssen 92195 Meudon http://www.lesia.obspm.fr/-Logiciels-embarques-.html *************************************************************************/ /************************************************************************ GERICOS Core Component GscTimestamp.hpp $Rev: 0 $ ************************************************************************/ #ifndef ICQ_TIMESTAMP_H_ #define ICQ_TIMESTAMP_H_ #include #include /// Get timestamp value from timer set uint64_t icq_timestamp_getTimestampValue(); /** * Compute delta between two timestamps * @param startTime old timestamp * @param endTime recent timestamp * @return */ uint64_t icq_timestamp_getTimestampDelta(uint64_t startTime, uint64_t endTime); #endif /* ICQ_TIMESTAMP_H_ */