00001 #ifndef _BOOST_CMT_USCLOCK_HPP_
00002 #define _BOOST_CMT_USCLOCK_HPP_
00003 #include <stdint.h>
00004 #include <boost/date_time/posix_time/ptime.hpp>
00005
00006 namespace boost { namespace cmt {
00007
00008 uint64_t usclock();
00009 uint64_t utc_clock();
00010 uint64_t sys_clock();
00011 uint64_t sync_utc_clock();
00012 boost::posix_time::ptime to_ptime( uint64_t t );
00013
00014 } }
00015
00016 #endif