mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 05:51:27 +12:00
Started the parser.
This commit is contained in:
parent
ed6c294749
commit
b6a0ef207b
12 changed files with 143 additions and 276 deletions
9
main.cpp
9
main.cpp
|
@ -1,9 +1,12 @@
|
|||
#include "document.h"
|
||||
#include "regex.h"
|
||||
#include "reader.h"
|
||||
#include <fstream>
|
||||
|
||||
int main()
|
||||
{
|
||||
YAML::Document doc("test.yaml");
|
||||
std::ifstream fin("test.yaml");
|
||||
YAML::Reader reader(fin);
|
||||
YAML::Document doc;
|
||||
reader.GetNextDocument(doc);
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue