diff options
Diffstat (limited to 'cpp/src/qpid/cluster/Event.h')
-rw-r--r-- | cpp/src/qpid/cluster/Event.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/cpp/src/qpid/cluster/Event.h b/cpp/src/qpid/cluster/Event.h index a0f9bc0e49..b8c2bc3901 100644 --- a/cpp/src/qpid/cluster/Event.h +++ b/cpp/src/qpid/cluster/Event.h @@ -56,16 +56,12 @@ class Event { char* getData() { return data; } const char* getData() const { return data; } - boost::intrusive_ptr<Connection> getConnection() const { return connection; } - void setConnection(const boost::intrusive_ptr<Connection>& c) { connection=c; } - operator framing::Buffer() const; private: static const size_t OVERHEAD; EventType type; ConnectionId connectionId; - boost::intrusive_ptr<Connection> connection; size_t size; RefCountedBuffer::pointer data; }; |