diff options
| author | Martin Sustrik <sustrik@fastmq.commkdir> | 2009-08-06 10:47:34 +0200 | 
|---|---|---|
| committer | Martin Sustrik <sustrik@fastmq.commkdir> | 2009-08-06 10:47:34 +0200 | 
| commit | b8b4acef4c2ba1a169ce84c1fb4c70a5676ebba3 (patch) | |
| tree | ad29407ed2db35765fda969e297f7f0efd9ff39a /src/pipe.hpp | |
| parent | 43fa72b7ee6b6d97b84a555ce8902cee855aeb72 (diff) | |
dispatcher renamed to context
Diffstat (limited to 'src/pipe.hpp')
| -rw-r--r-- | src/pipe.hpp | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/src/pipe.hpp b/src/pipe.hpp index 16ac837..8894a22 100644 --- a/src/pipe.hpp +++ b/src/pipe.hpp @@ -32,10 +32,10 @@ namespace zmq      class pipe_t : public ypipe_t <zmq_msg, false, message_pipe_granularity>      { -        //  Dispatcher is a friend so that it can create & destroy the pipes. +        //  Context is a friend so that it can create & destroy the pipes.          //  By making constructor & destructor private we are sure that nobody -        //  except dispatcher messes with pipes. -        friend class dispatcher_t; +        //  except context messes with pipes. +        friend class context_t;      private: @@ -45,7 +45,7 @@ namespace zmq          void set_index (int index_);          int get_index (); -        //  Index of the pipe in dispatcher's array of pipes. +        //  Index of the pipe in context's array of pipes.          int index;          pipe_t (const pipe_t&); | 
