
27 Jul
2006
27 Jul
'06
1:24 p.m.
Hi, I'm currently using the following code to calculate the number of seconds until the next month. I'm wondering whether there's an easier way. date d(day_clock::universal_day()); d += months(1); cout << duration2a((ptime(date(d.year(), d.month(), 1)) - second_clock::universal_time()).total_seconds()) + " until ladders reset" << endl; return 0;