summaryrefslogtreecommitdiff
path: root/NT/src/nodes.h
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2014-01-20 05:42:52 +0000
committerTim Redfern <tim@eclectronics.org>2014-01-20 05:42:52 +0000
commit344e9b1a484b361cac7b07500cb7d2699cc93c29 (patch)
tree0177d9963df8da75f438c55a4367bada0adf4324 /NT/src/nodes.h
parent0dfbf40106d6a6c70d949e1f5bcfa1b33b20a68f (diff)
updating graph
Diffstat (limited to 'NT/src/nodes.h')
-rw-r--r--NT/src/nodes.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/NT/src/nodes.h b/NT/src/nodes.h
index 1632363..4b1b2ac 100644
--- a/NT/src/nodes.h
+++ b/NT/src/nodes.h
@@ -12,7 +12,13 @@ namespace Rotor{
};
class Time: public Double_node {
public:
- Time(){type="time";};
+ Time(){
+ type="time";
+ description="time in fractional seconds";
+ title="Time";
+ type_id="4bdaaa7a-8194-11e3-8a4f-2ff6852ae2c7";
+ ui_type="none";
+ };
Time(Json::Value &settings):Time() {
init(settings);
};
@@ -56,6 +62,10 @@ namespace Rotor{
Print(){
inlet=create_inlet<double>("inlet");
type="print";
+ description="number as a string";
+ title="Print";
+ type_id="9b9232b8-8194-11e3-a5a2-07659a1b53c3";
+ ui_type="none";
}
Print(Json::Value &settings):Print() {
init(settings);