summaryrefslogtreecommitdiff
path: root/test_jsonxx.cc
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2014-08-16 21:25:52 +0100
committerPatrick Simianer <p@simianer.de>2014-08-16 21:25:52 +0100
commit9a0859212de4d1304f9392fe910921227421c8c3 (patch)
tree1b1276312c83415d7d7d3838ce0347441b71951a /test_jsonxx.cc
parent3ba77e3474e39d7970784812f6851a726572f7c7 (diff)
cleanup
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;
-}
-