summaryrefslogtreecommitdiff
path: root/src/io_thread.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/io_thread.hpp')
-rw-r--r--src/io_thread.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/io_thread.hpp b/src/io_thread.hpp
index 986c88d..00bd9a6 100644
--- a/src/io_thread.hpp
+++ b/src/io_thread.hpp
@@ -33,6 +33,8 @@
namespace zmq
{
+ class ctx_t;
+
// Generic part of the I/O thread. Polling-mechanism-specific features
// are implemented in separate "polling objects".
@@ -40,7 +42,7 @@ namespace zmq
{
public:
- io_thread_t (class ctx_t *ctx_, uint32_t tid_);
+ io_thread_t (zmq::ctx_t *ctx_, uint32_t tid_);
// Clean-up. If the thread was started, it's neccessary to call 'stop'
// before invoking destructor. Otherwise the destructor would hang up.