yaml-cpp/yaml-reader/main.cpp

39 lines
596 B
C++
Raw Normal View History

#include "yaml.h"
#include "tests.h"
#include <fstream>
#include <iostream>
2009-01-27 23:16:30 +03:00
#include <cstring>
void run()
{
std::ifstream fin("tests/test.yaml");
YAML::Parser parser(fin);
while(parser)
{
YAML::Node doc;
parser.GetNextDocument(doc);
std::cout << doc;
}
// try some output
YAML::Emitter out;
}
int main(int argc, char **argv)
{
bool verbose = false;
for(int i=1;i<argc;i++) {
2009-01-27 23:16:30 +03:00
if(std::strcmp(argv[i], "-v") == 0)
verbose = true;
}
#ifdef WINDOWS
_CrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF|_CRTDBG_ALLOC_MEM_DF);
#endif // WINDOWS
Test::RunAll(verbose);
run();
return 0;
}