mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-10 04:51:17 +00:00
Added parsing of anchors, aliases, and tags (still no semantics yet).
Fixed a silly bug in the simple key pushing (queues are FIFO!).
This commit is contained in:
6
node.h
6
node.h
@@ -24,9 +24,13 @@ namespace YAML
|
||||
|
||||
private:
|
||||
void ParseHeader(Scanner *pScanner);
|
||||
void ParseTag(Scanner *pScanner);
|
||||
void ParseAnchor(Scanner *pScanner);
|
||||
void ParseAlias(Scanner *pScanner);
|
||||
|
||||
private:
|
||||
std::string m_tag;
|
||||
bool m_alias;
|
||||
std::string m_anchor, m_tag;
|
||||
Content *m_pContent;
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user