Files
date_time/test/gregorian/testcurrent_day.cpp
Jeff Garland dc846827e4 first version -- renamed
[SVN r14901]
2002-08-15 18:59:16 +00:00

31 lines
757 B
C++

#include "boost/date_time/gregorian/gregorian.hpp"
#include <iostream>
int
main()
{
boost::gregorian::date d1(boost::gregorian::day_clock::local_day());
std::cout << "Check the printed date by hand: "
<< boost::gregorian::to_iso_string(d1) << std::endl;
using namespace boost::gregorian;
date::ymd_type ymd = day_clock::local_day_ymd();
std::cout << ymd.year << "-"
<< ymd.month.as_long_string() << "-"
<< ymd.day << std::endl;
date d2(day_clock::universal_day());
std::cout << "Getting UTC date: "
<< to_iso_string(d2) << std::endl;
date::ymd_type ymd2 = day_clock::universal_day_ymd();
std::cout << ymd2.year << "-"
<< ymd2.month.as_long_string() << "-"
<< ymd2.day << std::endl;
return 0;
}