diff options
author | David Robillard <d@drobilla.net> | 2015-08-12 04:46:29 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-08-12 04:46:29 +0000 |
commit | dd79e76e41446833088482588456afed37231bff (patch) | |
tree | c0f3c5c2fc74b286d529df69ad2206e2fddd96f9 /ingen/Node.hpp | |
parent | 44af7b7b66e2083819103c760ab3bf4980469f86 (diff) | |
download | ingen-dd79e76e41446833088482588456afed37231bff.tar.gz ingen-dd79e76e41446833088482588456afed37231bff.tar.bz2 ingen-dd79e76e41446833088482588456afed37231bff.zip |
Server-side presets.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5703 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen/Node.hpp')
-rw-r--r-- | ingen/Node.hpp | 9 |
1 files changed, 4 insertions, 5 deletions
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)) {} |