How interoperable are boost::date_time and std::chrono?
For example, is there a way to convert between boost::posix_time::ptime and std::chrono::time_point?
I tried searching for documentation on such conversions but couldn't find any.
How interoperable are boost::date_time and std::chrono?
For example, is there a way to convert between boost::posix_time::ptime and std::chrono::time_point?
I tried searching for documentation on such conversions but couldn't find any.
You can convert a time_t to and from a std::chrono::system_clock::time_point:
class system_clock
{
public:
...
static time_t to_time_t (const time_point& __t);
static time_point from_time_t(time_t __t);
};
And you can convert a time_t to a ptime:
ptime from_time_t(time_t t);
However I don't see a way to convert a ptime to a time_t.
I found this on the boost commits mailing list: http://lists.boost.org/boost-commit/2009/04/15209.php
Here are the relevant functions:
I'm not sure when they're going to become part of a boost release. They don't seem to be in boost trunk right now...