summaryrefslogtreecommitdiff
path: root/NT/src/graph.cpp
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2014-05-14 20:06:02 +0100
committerTim Redfern <tim@eclectronics.org>2014-05-14 20:06:02 +0100
commitebc874413991fbc3d07493ece55f88f23e437af6 (patch)
tree0b41617db2be2bdb53e83f1f37c971ced7e4172a /NT/src/graph.cpp
parentf3a687d33486a3d7a644a2110291124cb813cd67 (diff)
NT bugs cleaned and variable array type functional
Diffstat (limited to 'NT/src/graph.cpp')
-rw-r--r--NT/src/graph.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/NT/src/graph.cpp b/NT/src/graph.cpp
index f108f55..5b0a15a 100644
--- a/NT/src/graph.cpp
+++ b/NT/src/graph.cpp
@@ -123,6 +123,7 @@ bool Graph::parse_json(string &data,string &media_path){
check_audio(root["audio"].asString(),media_path);
init(root["id"].asString());
Json::Value jnodes = root["nodes"];
+ //std::cerr<<"json parser found "<<jnodes.size()<<" nodes"<<std::endl;
for ( uint32_t i = 0; i < jnodes.size(); ++i ) {
string node_id=jnodes[i]["id"].asString();
Node* node=factory.create(jnodes[i]);