Lexer: Implemented ::isInteger to help parsing.

This commit is contained in:
Paul Beckingham 2015-07-25 17:54:55 -04:00
parent 37e31e8e0b
commit c769891b76
2 changed files with 23 additions and 0 deletions

View file

@ -91,6 +91,7 @@ public:
bool isDuration (std::string&, Lexer::Type&);
bool isUUID (std::string&, Lexer::Type&);
bool isNumber (std::string&, Lexer::Type&);
bool isInteger (std::string&, Lexer::Type&);
bool isHexNumber (std::string&, Lexer::Type&);
bool isSeparator (std::string&, Lexer::Type&);
bool isURL (std::string&, Lexer::Type&);