Nishanth
Nishanth

Reputation: 7130

C# like DateTime in C++

What is the alternative for C# DateTime class in C++? I am looking for an underlying calender with support for incrementing hours, days or weeks. It should also support comparison of dates.

Upvotes: 4

Views: 2277

Answers (1)

user93353
user93353

Reputation: 14039

C++ doesn't have a date/time class in the standard library. But you can use Boost -

http://www.boost.org/doc/libs/1_40_0/doc/html/date_time.html

http://www.boost.org/doc/libs/1_40_0/doc/html/date_time/date_time_io.html#date_time.io_tutorial

Upvotes: 10

Related Questions