summaryrefslogtreecommitdiff
path: root/src/object.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-05-03 16:21:36 +0200
committerMartin Sustrik <sustrik@250bpm.com>2010-05-03 16:21:36 +0200
commit8b9bd05726c3df56d7f437889abccba3cbbffdee (patch)
treec7a777c53b7b78bf6ae57456f27ca94b630d5c56 /src/object.hpp
parent84e0c7991a9b316ed571533abc628cc1175750a3 (diff)
thread ID and dispatcher made private in object_t
Diffstat (limited to 'src/object.hpp')
-rw-r--r--src/object.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/object.hpp b/src/object.hpp
index b29c6b8..0084e1a 100644
--- a/src/object.hpp
+++ b/src/object.hpp
@@ -99,14 +99,14 @@ namespace zmq
// of processed commands here.
virtual void process_seqnum ();
+ private:
+
// Pointer to the root of the infrastructure.
class dispatcher_t *dispatcher;
// Slot ID of the thread the object belongs to.
uint32_t thread_slot;
- private:
-
void send_command (command_t &cmd_);
object_t (const object_t&);