diff options
Diffstat (limited to 'src/libs/engine/Node.hpp')
-rw-r--r-- | src/libs/engine/Node.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libs/engine/Node.hpp b/src/libs/engine/Node.hpp index 3114d369..470075a6 100644 --- a/src/libs/engine/Node.hpp +++ b/src/libs/engine/Node.hpp @@ -121,8 +121,10 @@ public: // FIXME: Only used by client senders. Remove? virtual const Raul::Array<Port*>& ports() const = 0; - virtual uint32_t num_ports() const = 0; - virtual uint32_t poly() const = 0; + virtual uint32_t num_ports() const = 0; + + virtual bool polyphonic() const = 0; + virtual uint32_t polyphony() const = 0; /** Used by the process order finding algorithm (ie during connections) */ virtual bool traversed() const = 0; |