summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/Node.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-04-11 20:28:25 +0000
committerDavid Robillard <d@drobilla.net>2007-04-11 20:28:25 +0000
commit98d36c7a799d8514cfa570f3cf7083c695e21e7b (patch)
treefb824e444965cab922c555ec4954677c0796a4be /src/libs/engine/Node.h
parentef4daed2d72e43ad700da9ca243318b8e43bb5e8 (diff)
downloadingen-98d36c7a799d8514cfa570f3cf7083c695e21e7b.tar.gz
ingen-98d36c7a799d8514cfa570f3cf7083c695e21e7b.tar.bz2
ingen-98d36c7a799d8514cfa570f3cf7083c695e21e7b.zip
Minor code cleanups/cruft removal.
git-svn-id: http://svn.drobilla.net/lad/ingen@442 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/Node.h')
-rw-r--r--src/libs/engine/Node.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libs/engine/Node.h b/src/libs/engine/Node.h
index 4fe43d03..93f032a8 100644
--- a/src/libs/engine/Node.h
+++ b/src/libs/engine/Node.h
@@ -87,14 +87,14 @@ public:
/** Nodes that are connected to this Node's inputs.
* (This Node depends on them)
*/
- virtual Raul::List<Node*>* providers() = 0;
- virtual void providers(Raul::List<Node*>* l) = 0;
+ virtual Raul::List<Node*>* providers() = 0;
+ virtual void providers(Raul::List<Node*>* l) = 0;
/** Nodes are are connected to this Node's outputs.
* (They depend on this Node)
*/
- virtual Raul::List<Node*>* dependants() = 0;
- virtual void dependants(Raul::List<Node*>* l) = 0;
+ virtual Raul::List<Node*>* dependants() = 0;
+ virtual void dependants(Raul::List<Node*>* l) = 0;
/** The Patch this Node belongs to. */
virtual Patch* parent_patch() const = 0;