mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 06:21:26 +12:00
Tags, anchors, and aliases are all parsed now.
This commit is contained in:
parent
8180a85a3b
commit
4c5a488f68
19 changed files with 303 additions and 93 deletions
7
main.cpp
7
main.cpp
|
@ -8,8 +8,11 @@ int main()
|
|||
YAML::Parser parser(fin);
|
||||
|
||||
YAML::Document doc;
|
||||
parser.GetNextDocument(doc);
|
||||
std::cout << doc;
|
||||
while(parser) {
|
||||
std::cout << "---\n";
|
||||
parser.GetNextDocument(doc);
|
||||
std::cout << doc;
|
||||
}
|
||||
getchar();
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue