boost 获取当前日期和时间

来源:互联网 发布:手机淘宝在哪装修 编辑:程序博客网 时间:2024/06/07 11:17

#include <boost/date_time/gregorian/gregorian.hpp>    
#include <boost/date_time/posix_time/posix_time.hpp> 
#define BOOST_DATE_TIME_SOURCE  



boost::gregorian::to_iso_string(boost::gregorian::day_clock::local_day());


using namespace boost::posix_time;
using namespace boost::gregorian;
time_duration hms(second_clock::local_time().time_of_day());

0 0