ProteoWizard
|
#include <boost/date_time/local_time/local_time.hpp>
#include <boost/math/special_functions/modf.hpp>
Go to the source code of this file.
Namespaces | |
boost | |
boost::date_time | |
pwiz | |
pwiz::util | |
Functions | |
template<class time_type > | |
time_type | boost::date_time::time_from_OADATE (double oa_date) |
Create a time object from an OLE automation date value. More... | |
std::string | pwiz::util::format_date_time (const std::string &format, const bpt::ptime &t) |
formats a boost ptime according to a custom format string More... | |
std::string | pwiz::util::format_date_time (const std::string &format, const blt::local_date_time &t) |
formats a boost local_date_time according to a custom format string More... | |
std::string | pwiz::util::format_date_time (const std::string &format, const bpt::time_duration &t) |
formats a boost time duration according to a custom format string More... | |
blt::local_date_time | pwiz::util::parse_date_time (const std::string &format, const std::string &t) |
converts a custom formatted datetime string to a boost local_date_time More... | |
std::string | pwiz::util::encode_xml_datetime (const bpt::ptime &t) |
returns a string representation suitable for an xsd:datetime attribute; input is assumed to be UTC time; output string is UTC time (as denoted by the 'Z' suffix) More... | |
std::string | pwiz::util::encode_xml_datetime (const blt::local_date_time &t) |
returns a string representation suitable for an xsd:datetime attribute; time zone is assumed to be correct; output string is UTC time (as denoted by the 'Z' suffix) More... | |
blt::local_date_time | pwiz::util::decode_xml_datetime (const std::string &t) |
converts an xsd:datetime attribute to a local_date_time More... | |