summaryrefslogtreecommitdiff
path: root/src/session.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/session.hpp
parent3ae73ee11f13bbc9c91b235de18fde763c359009 (diff)
Rename i_inout to i_engine_sink
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/session.hpp')
-rw-r--r--src/session.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/session.hpp b/src/session.hpp
index 1e32722..4c17930 100644
--- a/src/session.hpp
+++ b/src/session.hpp
@@ -22,7 +22,7 @@
#define __ZMQ_SESSION_HPP_INCLUDED__
#include "own.hpp"
-#include "i_inout.hpp"
+#include "i_engine.hpp"
#include "io_object.hpp"
#include "blob.hpp"
#include "pipe.hpp"
@@ -33,7 +33,7 @@ namespace zmq
class session_t :
public own_t,
public io_object_t,
- public i_inout,
+ public i_engine_sink,
public i_pipe_events
{
public:
@@ -44,7 +44,7 @@ namespace zmq
// To be used once only, when creating the session.
void attach_pipe (class pipe_t *pipe_);
- // i_inout interface implementation.
+ // i_engine_sink interface implementation.
bool read (msg_t *msg_);
bool write (msg_t *msg_);
void flush ();