summaryrefslogtreecommitdiff
path: root/NT/src/graph.cpp
diff options
context:
space:
mode:
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]);