summaryrefslogtreecommitdiff
path: root/src/dispatcher.cpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@fastmq.commkdir>2009-08-09 16:30:22 +0200
committerMartin Sustrik <sustrik@fastmq.commkdir>2009-08-09 16:30:22 +0200
commitbda766ab401b6c565fe9c2d0bc80c11bbbe84488 (patch)
tree480bcb26fd6c9dde096d00a3a189d74cd3585942 /src/dispatcher.cpp
parent9f1f823b7b69ced56bdb0416feef71230cc7fd55 (diff)
redundant interface (i_api) removed
Diffstat (limited to 'src/dispatcher.cpp')
-rw-r--r--src/dispatcher.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/dispatcher.cpp b/src/dispatcher.cpp
index 0b68880..c0f4541 100644
--- a/src/dispatcher.cpp
+++ b/src/dispatcher.cpp
@@ -20,7 +20,6 @@
#include "../include/zmq.h"
#include "dispatcher.hpp"
-#include "i_api.hpp"
#include "app_thread.hpp"
#include "io_thread.hpp"
#include "platform.hpp"
@@ -98,7 +97,7 @@ int zmq::dispatcher_t::thread_slot_count ()
return signalers.size ();
}
-zmq::i_api *zmq::dispatcher_t::create_socket (int type_)
+zmq::socket_base_t *zmq::dispatcher_t::create_socket (int type_)
{
threads_sync.lock ();
app_thread_t *thread = choose_app_thread ();