- Nibbler now understands parsing from a list of tokens, with getOneOf.
This commit is contained in:
Paul Beckingham 2011-06-11 11:13:56 -04:00
parent a5feb6ef83
commit 8f20efc739
3 changed files with 37 additions and 1 deletions

View file

@ -29,6 +29,7 @@
#define L10N // Localization complete.
#include <string>
#include <vector>
class Nibbler
{
@ -63,6 +64,7 @@ public:
bool getUUID (std::string&);
bool getDateISO (time_t&);
bool getDate (const std::string&, time_t&);
bool getOneOf (const std::vector <std::string>&, std::string&);
bool skipN (const int quantity = 1);
bool skip (char);