mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 20:51:16 +00:00
More simple scalar scanning.
This commit is contained in:
13
scanner.h
13
scanner.h
@@ -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();
|
||||
|
Reference in New Issue
Block a user