diff options
author | David Robillard <d@drobilla.net> | 2017-03-26 18:15:16 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-03-26 18:15:16 +0200 |
commit | d5eb49e1e468377fea4c5f13840d0435714d34c4 (patch) | |
tree | 5758545d6050b290c2155aebc70dc882b9527f73 /ingen | |
parent | ba3e956f5be02730368b75fbec704e75b3f036da (diff) | |
download | ingen-d5eb49e1e468377fea4c5f13840d0435714d34c4.tar.gz ingen-d5eb49e1e468377fea4c5f13840d0435714d34c4.tar.bz2 ingen-d5eb49e1e468377fea4c5f13840d0435714d34c4.zip |
Remove Node port accessors
Diffstat (limited to 'ingen')
-rw-r--r-- | ingen/Node.hpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ingen/Node.hpp b/ingen/Node.hpp index cde50f63..5f8e0bc6 100644 --- a/ingen/Node.hpp +++ b/ingen/Node.hpp @@ -57,9 +57,7 @@ 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 Resource* plugin() const { return NULL; } + virtual const Resource* plugin() const { return NULL; } // Plugin blocks only virtual bool save_state(const std::string& dir) const { return false; } |