More simple scalar scanning.

This commit is contained in:
Jesse Beder 2008-06-26 22:00:39 +00:00
parent a3961d047f
commit 31f7db5a0d
5 changed files with 164 additions and 209 deletions

View file

@ -43,13 +43,14 @@ namespace YAML
private:
char GetChar();
void EatLineBreak();
void EatDocumentStart();
void EatDocumentEnd();
void Eat(int n = 1);
std::string Peek(int n);
bool IsWhitespaceToBeEaten();
bool IsLineBreak();
bool IsBlank();
void EatLineBreak();
bool IsWhitespaceToBeEaten(char ch);
bool IsLineBreak(char ch);
bool IsBlank(char ch);
bool IsDocumentStart();
bool IsDocumentEnd();
bool IsBlockEntry();