- Implemented Nibbler::getDigit to retrieve a single numeric digit.
- Implemented Nibbler::getISODate.
This commit is contained in:
Paul Beckingham 2011-06-11 08:12:05 -04:00
parent ffcc2a49d8
commit a5feb6ef83
3 changed files with 115 additions and 1 deletions

View file

@ -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);