mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
ISO8601: Prepared ::parse method for its new role of parsing all dates
This commit is contained in:
parent
e2f504e686
commit
2b3691508f
2 changed files with 6 additions and 2 deletions
|
@ -167,7 +167,10 @@ ISO8601d::operator time_t () const
|
|||
// | 'R' [n] '/' datetime '/' datetime # start end
|
||||
// ;
|
||||
//
|
||||
bool ISO8601d::parse (const std::string& input, std::string::size_type& start)
|
||||
bool ISO8601d::parse (
|
||||
const std::string& input,
|
||||
std::string::size_type& start,
|
||||
const std::string& format /* = "" */)
|
||||
{
|
||||
auto i = start;
|
||||
Nibbler n (input.substr (i));
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
// http://www.opensource.org/licenses/mit-license.php
|
||||
//
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef INCLUDED_ISO8601
|
||||
#define INCLUDED_ISO8601
|
||||
|
||||
|
@ -38,7 +39,7 @@ public:
|
|||
ISO8601d (const ISO8601d&); // Unimplemented
|
||||
ISO8601d& operator= (const ISO8601d&); // Unimplemented
|
||||
operator time_t () const;
|
||||
bool parse (const std::string&, std::string::size_type&);
|
||||
bool parse (const std::string&, std::string::size_type&, const std::string& format = "");
|
||||
void clear ();
|
||||
|
||||
private:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue