summaryrefslogtreecommitdiff
path: root/NT/src/factory.cpp
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2014-01-20 01:59:04 +0000
committerTim Redfern <tim@eclectronics.org>2014-01-20 01:59:04 +0000
commit0dfbf40106d6a6c70d949e1f5bcfa1b33b20a68f (patch)
tree99a257b9e35d3eb76948f99a7cb51eed53514b01 /NT/src/factory.cpp
parentbd5a1d60ab7e1a930835e239cc0ee7257e9e82ad (diff)
member access permissions
Diffstat (limited to 'NT/src/factory.cpp')
-rw-r--r--NT/src/factory.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/NT/src/factory.cpp b/NT/src/factory.cpp
index 73a96f4..86b6a48 100644
--- a/NT/src/factory.cpp
+++ b/NT/src/factory.cpp
@@ -10,6 +10,7 @@ Node_factory::Node_factory(){
}
bool Node_factory::list_node(const string &_type,Json::Value &json){
for (auto& type: type_map) {
+cerr<<type.first<<endl;
if (type.first==_type) {
json["node"]=type.second->to_json();
return true;