summaryrefslogtreecommitdiffstats
path: root/src/engine/PortImpl.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/PortImpl.hpp')
-rw-r--r--src/engine/PortImpl.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/engine/PortImpl.hpp b/src/engine/PortImpl.hpp
index 06887f4a..ceb556c1 100644
--- a/src/engine/PortImpl.hpp
+++ b/src/engine/PortImpl.hpp
@@ -50,6 +50,8 @@ class BufferFactory;
class PortImpl : public GraphObjectImpl, public Ingen::Shared::Port
{
public:
+ ~PortImpl();
+
/** A port's parent is always a node, so static cast should be safe */
NodeImpl* parent_node() const { return (NodeImpl*)_parent; }
@@ -135,9 +137,6 @@ protected:
// Dynamic polyphony
Raul::Array<BufferFactory::Ref>* _prepared_buffers;
-
- friend class Engine;
- virtual ~PortImpl();
};