mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-27 00:57:19 +02:00
Enhancements - Nibbler upgrades.
- Enhancements to ensure that EOS conditions don't break calls.
This commit is contained in:
parent
87ed7dad6c
commit
dde044c3d7
6 changed files with 139 additions and 21 deletions
|
@ -39,13 +39,13 @@ public:
|
|||
Nibbler& operator= (const Nibbler&); // Assignment operator
|
||||
~Nibbler (); // Destructor
|
||||
|
||||
bool getUntilChar (char, std::string&);
|
||||
bool getUntilChars (const std::string&, std::string&);
|
||||
bool getUntilString (const std::string&, std::string&);
|
||||
bool skip (const int quantity = 1);
|
||||
bool getUntil (char, std::string&);
|
||||
bool getUntil (const std::string&, std::string&);
|
||||
bool getUntilOneOf (const std::string&, std::string&);
|
||||
bool skipN (const int quantity = 1);
|
||||
bool skip (char);
|
||||
bool skipAll (char);
|
||||
bool skipAllChars (const std::string&);
|
||||
bool skipAllOneOf (const std::string&);
|
||||
bool getQuoted (char, std::string&);
|
||||
bool getInt (int&);
|
||||
bool getUnsignedInt (int&i);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue