- Stubbed ::isDate and ::isDuration methods.
This commit is contained in:
Paul Beckingham
2015-02-21 09:19:24 -08:00
parent 1128ad8259
commit 0d23511cee
2 changed files with 27 additions and 4 deletions

View File

@@ -45,7 +45,7 @@ public:
substitution, pattern,
op,
identifier, word,
/*date,*/ /*duration,*/ };
date, duration };
Lexer2 (const std::string&);
~Lexer2 ();
@@ -75,6 +75,8 @@ public:
// Classifiers.
bool isString (std::string&, Lexer2::Type&, int quote);
bool isDate (std::string&, Lexer2::Type&);
bool isDuration (std::string&, Lexer2::Type&);
bool isUUID (std::string&, Lexer2::Type&);
bool isNumber (std::string&, Lexer2::Type&);
bool isHexNumber (std::string&, Lexer2::Type&);