00001 00008 /***************************************************************************** 00009 ** Ifdefs 00010 *****************************************************************************/ 00011 00012 #ifndef ECL_TIME_TIME_STAMP_HPP_ 00013 #define ECL_TIME_TIME_STAMP_HPP_ 00014 00015 /***************************************************************************** 00016 ** Cross Platform Functionality 00017 *****************************************************************************/ 00018 00019 #include <ecl/config.hpp> 00020 00021 /***************************************************************************** 00022 ** Includes 00023 *****************************************************************************/ 00024 00025 // Use the ecl cross platform time functions. 00026 #include <ecl/time_lite/functions.hpp> 00027 00028 #if defined(ECL_IS_POSIX) 00029 #include "timestamp_pos.hpp" 00030 #elif defined(ECL_IS_WIN32) 00031 #include "timestamp_win.hpp" 00032 #endif 00033 00034 #endif /* ECL_TIME_TIME_STAMP_HPP_ */