summaryrefslogtreecommitdiff
path: root/test_jsonxx.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test_jsonxx.cc')
-rw-r--r--test_jsonxx.cc35
1 files changed, 0 insertions, 35 deletions
diff --git a/test_jsonxx.cc b/test_jsonxx.cc
deleted file mode 100644
index d06640e..0000000
--- a/test_jsonxx.cc
+++ /dev/null
@@ -1,35 +0,0 @@
-#include <iostream>
-#include <fstream>
-#include <string>
-
-/*
- * https://github.com/hjiang/jsonxx
- *
- */
-#include "jsonxx/jsonxx.h"
-
-using namespace std;
-
-
-int
-main(int argc, char** argv)
-{
- ifstream ifs(argv[1]);
- string json_str((istreambuf_iterator<char>(ifs)),
- (istreambuf_iterator<char>()));
-
- jsonxx::Object o;
- o.parse(json_str);
- jsonxx::Array edges = o.get<jsonxx::Array>("edges");
- jsonxx::Array::container::const_iterator it = edges.values().begin(), end = edges.values().end();
- while (it != end) {
- jsonxx::Object e = (*it)->get<jsonxx::Object>();
- string s = e.get<string>("rule").substr(1, 4);
- if (s == "Goal")
- cerr << s << endl;
- ++it;
- }
-
- return 0;
-}
-