How can I create a boost::local_time::local_date_time object from a tm time structure?

link|improve this question

75% accept rate
feedback

2 Answers

This will help you to convert tm structure into posix_time object. Look around for more conversions.

link|improve this answer
feedback

Bit of a pain, but it seems like you have to go via posix_time::ptime:

using namespace boost;
time_t rawtime;
time(&rawtime);
struct tm* timeinfo = localtime(&rawtime);
posix_time::ptime my_ptime = posix_time::ptime_from_tm(*timeinfo);
local_time::time_zone_ptr zone(new local_time::posix_time_zone("GMT"));
local_time::local_date_time my_ldt(my_ptime, zone);
std::cout << "local_date_time: " << my_ldt << std::endl;
link|improve this answer
Unfortunately this hard codes the timezone – Richard Jul 31 '09 at 16:06
feedback

Your Answer

 
or
required, but never shown

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