#include <chrono>
#include <cstddef>
#include <ctime>
#include <iomanip>
#include <iostream>
#include <regex>
#include <sstream>
Go to the source code of this file.
|
namespace | volcart |
| Volume Cartographer library
|
|
|
auto | volcart::DateTime () -> std::string |
| Returns a string representation of the current date and time. More...
|
|
template<typename Rep , typename Period > |
auto | volcart::DurationToString (std::chrono::duration< Rep, Period > input) -> std::string |
| Returns a string representation of the provided time duration. More...
|
|
template<typename Duration = std::chrono::milliseconds> |
auto | volcart::DurationFromString (const std::string &str) -> Duration |
| Convert a duration string to a a std::chrono duration. More...
|
|