I am living in the Netherlands, when I run this code:

boost::local_time::local_date_time t = boost::local_time::local_sec_clock::local_time(boost::local_time::time_zone_ptr());

std::cout << "\nDate Time: " << t.to_string() ;

The "Date Time" returned is one hour behind. It is UTC but it should be GMT+1 or UTC+1 for my current system date time!

What should I change to the boost::local_time to get the system date time.

Thanks in advance.

link|improve this question

If you want your current system time, use posix_time, not local_time. See stackoverflow.com/questions/2612938/… and stackoverflow.com/questions/2492775/get-local-time-with-boost/…. – Éric Malenfant Nov 16 '10 at 14:10
feedback

2 Answers

up vote 2 down vote accepted

boost::local_time::time_zone_ptr zone_GMT1(new boost::local_time::posix_time_zone("GMT+1"));

boost::local_time::local_date_time t = boost::local_time::local_sec_clock::local_time(zone_GMT1);

I found out to use the timeZone.

It works fine for me

Thanks!

link|improve this answer
feedback

Maybe you have to enable daylight savings time calculation, by giving an additional parameter set to true (the DST flag), see http://www.boost.org/doc/libs/1_38_0/doc/html/date_time/local_time.html#id3051627

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.