mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Parsing
- Implemented Nibbler::getDigit to retrieve a single numeric digit. - Implemented Nibbler::getISODate.
This commit is contained in:
parent
ffcc2a49d8
commit
a5feb6ef83
3 changed files with 115 additions and 1 deletions
|
@ -53,6 +53,7 @@ public:
|
|||
*/
|
||||
|
||||
bool getQuoted (char, std::string&, bool quote = false);
|
||||
bool getDigit (int&);
|
||||
bool getInt (int&);
|
||||
bool getHex (int&);
|
||||
bool getUnsignedInt (int&);
|
||||
|
@ -60,6 +61,8 @@ public:
|
|||
bool getLiteral (const std::string&);
|
||||
bool getRx (const std::string&, std::string&);
|
||||
bool getUUID (std::string&);
|
||||
bool getDateISO (time_t&);
|
||||
bool getDate (const std::string&, time_t&);
|
||||
|
||||
bool skipN (const int quantity = 1);
|
||||
bool skip (char);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue