summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/NodeBase.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2006-06-19 00:32:15 +0000
committerDavid Robillard <d@drobilla.net>2006-06-19 00:32:15 +0000
commit3bb7c1a7eef744d17e436522a3dc0ed8527a427e (patch)
tree62f9e596c21d5ad294f3c95e0c29e074db89567f /src/libs/engine/NodeBase.h
parentd2042e04de9ba3ab962890d228ad2adf84a0d728 (diff)
downloadingen-3bb7c1a7eef744d17e436522a3dc0ed8527a427e.tar.gz
ingen-3bb7c1a7eef744d17e436522a3dc0ed8527a427e.tar.bz2
ingen-3bb7c1a7eef744d17e436522a3dc0ed8527a427e.zip
Ditched ghetto homebrew RTTI in favour of the real deal;
removed BridgeNode crap git-svn-id: http://svn.drobilla.net/lad/grauph@58 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/NodeBase.h')
-rw-r--r--src/libs/engine/NodeBase.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libs/engine/NodeBase.h b/src/libs/engine/NodeBase.h
index d7748543..7dffc0c9 100644
--- a/src/libs/engine/NodeBase.h
+++ b/src/libs/engine/NodeBase.h
@@ -73,12 +73,13 @@ public:
virtual List<Node*>* dependants() { return _dependants; }
virtual void dependants(List<Node*>* l) { _dependants = l; }
- Patch* parent_patch() const { return (_parent == NULL) ? NULL : _parent->as_patch(); }
-
virtual const Plugin* plugin() const { return _plugin; }
void set_path(const Path& new_path);
+ /** A node's parent is always a patch, so static cast should be safe */
+ Patch* parent_patch() const { return (Patch*)_parent; }
+
protected:
// Disallow copies (undefined)
NodeBase(const NodeBase&);