summaryrefslogtreecommitdiffstats
path: root/src/server/ConnectionImpl.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-10-06 22:59:17 +0000
committerDavid Robillard <d@drobilla.net>2011-10-06 22:59:17 +0000
commita42d55487c0f70313ebccb043c571c8097b20093 (patch)
treeb05456f6604ed31c0c439c0054967c3743045000 /src/server/ConnectionImpl.hpp
parentd3c0df029087b2c7c7f26a4365e85f8e500cc33e (diff)
downloadingen-a42d55487c0f70313ebccb043c571c8097b20093.tar.gz
ingen-a42d55487c0f70313ebccb043c571c8097b20093.tar.bz2
ingen-a42d55487c0f70313ebccb043c571c8097b20093.zip
Remove unused BufferFactory member of ConnectionImpl.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3534 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/ConnectionImpl.hpp')
-rw-r--r--src/server/ConnectionImpl.hpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/server/ConnectionImpl.hpp b/src/server/ConnectionImpl.hpp
index 35441d7d..36eb545f 100644
--- a/src/server/ConnectionImpl.hpp
+++ b/src/server/ConnectionImpl.hpp
@@ -59,7 +59,7 @@ class ConnectionImpl : public Raul::Deletable
, public boost::intrusive::list_base_hook<>
{
public:
- ConnectionImpl(BufferFactory& bufs, PortImpl* src_port, PortImpl* dst_port);
+ ConnectionImpl(PortImpl* src_port, PortImpl* dst_port);
PortImpl* src_port() const { return _src_port; }
PortImpl* dst_port() const { return _dst_port; }
@@ -97,12 +97,10 @@ public:
protected:
void dump() const;
+ PortImpl* const _src_port;
+ PortImpl* const _dst_port;
Raul::RingBuffer* _queue;
-
- BufferFactory& _bufs;
- PortImpl* const _src_port;
- PortImpl* const _dst_port;
- bool _pending_disconnection;
+ bool _pending_disconnection;
};
} // namespace Server