1 #ifndef POSIXTIME_PARSERS_HPP___ 2 #define POSIXTIME_PARSERS_HPP___ 3 4 /* Copyright (c) 2002,2003 CrystalClear Software, Inc. 5 * Use, modification and distribution is subject to the 6 * Boost Software License, Version 1.0. (See accompanying 7 * file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) 8 * Author: Jeff Garland 9 * $Date$ 10 */ 11 12 #include "boost/date_time/gregorian/gregorian.hpp" 13 #include "boost/date_time/time_parsing.hpp" 14 #include "boost/date_time/posix_time/posix_time_types.hpp" 15 16 17 namespace boost { 18 19 namespace posix_time { 20 21 //! Creates a time_duration object from a delimited string 22 /*! Expected format for string is "[-]h[h][:mm][:ss][.fff]". 23 * A negative duration will be created if the first character in 24 * string is a '-', all other '-' will be treated as delimiters. 25 * Accepted delimiters are "-:,.". */ duration_from_string(const std::string & s)26 inline time_duration duration_from_string(const std::string& s) { 27 return date_time::parse_delimited_time_duration<time_duration>(s); 28 } 29 time_from_string(const std::string & s)30 inline ptime time_from_string(const std::string& s) { 31 return date_time::parse_delimited_time<ptime>(s, ' '); 32 } 33 from_iso_string(const std::string & s)34 inline ptime from_iso_string(const std::string& s) { 35 return date_time::parse_iso_time<ptime>(s, 'T'); 36 } 37 from_iso_extended_string(const std::string & s)38 inline ptime from_iso_extended_string(const std::string& s) { 39 return date_time::parse_delimited_time<ptime>(s, 'T'); 40 } 41 42 43 44 } } //namespace posix_time 45 46 47 #endif 48 49