summaryrefslogtreecommitdiff
path: root/src/zmq_init.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2011-06-27 18:16:53 +0200
committerMartin Sustrik <sustrik@250bpm.com>2011-06-27 18:16:53 +0200
commitf8bf3a4cef6b8e1688683ab8c5ed6dd1bc8e3a12 (patch)
treec73fa27cb241d8b4639b0cc535fbd3c6f39c3821 /src/zmq_init.hpp
parent3ae73ee11f13bbc9c91b235de18fde763c359009 (diff)
Rename i_inout to i_engine_sink
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/zmq_init.hpp')
-rw-r--r--src/zmq_init.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/zmq_init.hpp b/src/zmq_init.hpp
index ec9b2b3..3324f5e 100644
--- a/src/zmq_init.hpp
+++ b/src/zmq_init.hpp
@@ -23,7 +23,6 @@
#include <vector>
-#include "i_inout.hpp"
#include "i_engine.hpp"
#include "stdint.hpp"
#include "blob.hpp"
@@ -36,7 +35,9 @@ namespace zmq
// The class handles initialisation phase of 0MQ wire-level protocol.
- class zmq_init_t : public own_t, public i_inout
+ class zmq_init_t :
+ public own_t,
+ public i_engine_sink
{
public:
@@ -56,7 +57,7 @@ namespace zmq
void finalise_initialisation ();
void dispatch_engine ();
- // i_inout interface implementation.
+ // i_engine_sink interface implementation.
bool read (class msg_t *msg_);
bool write (class msg_t *msg_);
void flush ();