From 3bb7c1a7eef744d17e436522a3dc0ed8527a427e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 19 Jun 2006 00:32:15 +0000 Subject: 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 --- src/libs/engine/Node.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/libs/engine/Node.h') diff --git a/src/libs/engine/Node.h b/src/libs/engine/Node.h index 07dc5d89..27d59e32 100644 --- a/src/libs/engine/Node.h +++ b/src/libs/engine/Node.h @@ -54,8 +54,6 @@ public: Node(OmObject* parent, const string& name) : OmObject(parent, name) {} virtual ~Node() {} - Node* as_node() { return static_cast(this); } - /** Activate this Node. * * This function will be called in a non-realtime thread before it is @@ -93,7 +91,7 @@ public: virtual void dependants(List* l) = 0; /** The Patch this Node belongs to. */ - virtual Patch* parent_patch() const = 0; + virtual Patch* parent_patch() const = 0; /** Information about what 'plugin' this Node is an instance of. * Not the best name - not all nodes come from plugins (ie Patch) -- cgit v1.2.1