mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 23:11:25 +12:00
12 lines
No EOL
188 B
C++
12 lines
No EOL
188 B
C++
#include "reader.h"
|
|
#include <fstream>
|
|
|
|
int main()
|
|
{
|
|
std::ifstream fin("test.yaml");
|
|
YAML::Reader reader(fin);
|
|
YAML::Document doc;
|
|
reader.GetNextDocument(doc);
|
|
|
|
return 0;
|
|
} |