Expected behavior
It would be usefull to have support for C+=11 std::chrono types
Foo::setTimeout(std::chrono::microseconds timeout) {
//...
Poco::Timespan ts{timeout};
//...
}
//...
using namespace std::chrono_literals;
Foo f;
f.setTimeout(1s);
Actual behavior
Poco time-related classes does not accept std::chrono types
POCO version
1.9.0