diff options
Diffstat (limited to 'src/engine/InputPort.hpp')
-rw-r--r-- | src/engine/InputPort.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/engine/InputPort.hpp b/src/engine/InputPort.hpp index 6eca20f4..abc63a91 100644 --- a/src/engine/InputPort.hpp +++ b/src/engine/InputPort.hpp @@ -74,10 +74,12 @@ public: bool is_input() const { return true; } bool is_output() const { return false; } - + virtual void set_buffer_size(size_t size); private: + bool can_direct() const; + Connections _connections; }; |