From dd79e76e41446833088482588456afed37231bff Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 12 Aug 2015 04:46:29 +0000 Subject: Server-side presets. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5703 a436a847-0d15-0410-975c-d299462d15a1 --- ingen/Node.hpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'ingen/Node.hpp') diff --git a/ingen/Node.hpp b/ingen/Node.hpp index 181a9c53..4c7c453a 100644 --- a/ingen/Node.hpp +++ b/ingen/Node.hpp @@ -31,7 +31,6 @@ class Symbol; namespace Ingen { class Arc; -class Plugin; class Store; /** An object on the audio graph. @@ -63,9 +62,9 @@ public: const Arcs& arcs() const { return _arcs; } // Blocks and graphs only - virtual uint32_t num_ports() const { return 0; } - virtual Node* port(uint32_t index) const { return NULL; } - virtual const Plugin* plugin() const { return NULL; } + virtual uint32_t num_ports() const { return 0; } + virtual Node* port(uint32_t index) const { return NULL; } + virtual const Resource* plugin() const { return NULL; } // All objects virtual GraphType graph_type() const = 0; @@ -101,7 +100,7 @@ protected: friend class Store; virtual void set_path(const Raul::Path& p) = 0; - Node(URIs& uris, const Raul::Path& path) + Node(const URIs& uris, const Raul::Path& path) : Resource(uris, path_to_uri(path)) {} -- cgit v1.2.1