From d3561183fbc59f8f907d2445f380a6a8a0f560d0 Mon Sep 17 00:00:00 2001 From: Tim Redfern Date: Tue, 10 Dec 2013 16:03:54 +0000 Subject: Control node template --- rotord/src/rotor.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'rotord/src/rotor.h') diff --git a/rotord/src/rotor.h b/rotord/src/rotor.h index 0013313..766802f 100644 --- a/rotord/src/rotor.h +++ b/rotord/src/rotor.h @@ -338,7 +338,7 @@ namespace Rotor { }; class Node{ public: - Node(){duplicate_inputs=false;UItype="";}; + Node(){duplicate_inputs=false;}; virtual Node* clone(map &_settings)=0; //pure virtual virtual ~Node(){ for (auto a: attributes) delete a.second; @@ -379,7 +379,6 @@ namespace Rotor { string ID; string NODEID; string title; - string UItype; bool duplicate_inputs; string find_setting(map &settings,string key,string def=""){ if (settings.find(key)!=settings.end()) return settings[key]; else return def;}; double find_setting(map &settings,string key,double def){ if (settings.find(key)!=settings.end()) return toFloat(settings[key]); else return def;}; -- cgit v1.2.3