summaryrefslogtreecommitdiff
path: root/src/zmq_engine.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/zmq_engine.hpp')
-rw-r--r--src/zmq_engine.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/zmq_engine.hpp b/src/zmq_engine.hpp
index ea77b7e..c842da7 100644
--- a/src/zmq_engine.hpp
+++ b/src/zmq_engine.hpp
@@ -36,7 +36,8 @@ namespace zmq
{
public:
- zmq_engine_t (class io_thread_t *parent_, fd_t fd_);
+ zmq_engine_t (class io_thread_t *parent_, fd_t fd_,
+ const options_t &options_);
~zmq_engine_t ();
// i_engine interface implementation.
@@ -71,6 +72,8 @@ namespace zmq
zmq_encoder_t encoder;
zmq_decoder_t decoder;
+ options_t options;
+
zmq_engine_t (const zmq_engine_t&);
void operator = (const zmq_engine_t&);
};