punischdude
punischdude

Reputation: 219

Calculate the first day of a calendar week

I need to calculate the date of the first day in a calendar week, e.g.

Week 1 in 2009 -> Mon, 29.12.2008 (!)
Week 44 in 2009 -> Mon, 26.10.2009

I have some ugly code for this, but I would prefer a nice C++ lib.

Any suggestions?

Upvotes: 4

Views: 1523

Answers (1)

fa.
fa.

Reputation: 2486

what about boost::gregorian::date with its algorithms ?

Upvotes: 4

Related Questions