I'm looking for c++ type and functions to work with "days".
In particular I need to:
- convert strings like "20140224" to datatype and vice versa (of course i can parse strings myself to int if necessary - 2014, 02, 24)
- "iterate", for example from "20140101" to "20140224"
I don't need:
- time of the day. current day is "smallest" pieace i'm working with
I can use c++11, what can you recommend?