From bda766ab401b6c565fe9c2d0bc80c11bbbe84488 Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Sun, 9 Aug 2009 16:30:22 +0200 Subject: redundant interface (i_api) removed --- src/app_thread.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/app_thread.hpp') diff --git a/src/app_thread.hpp b/src/app_thread.hpp index 59e4a25..e7bbf70 100644 --- a/src/app_thread.hpp +++ b/src/app_thread.hpp @@ -56,15 +56,15 @@ namespace zmq void process_commands (bool block_); // Create a socket of a specified type. - struct i_api *create_socket (int type_); + class socket_base_t *create_socket (int type_); // Unregister the socket from the app_thread (called by socket itself). - void remove_socket (struct i_api *socket_); + void remove_socket (class socket_base_t *socket_); private: // All the sockets created from this application thread. - typedef std::vector sockets_t; + typedef std::vector sockets_t; sockets_t sockets; // Thread ID associated with this slot. -- cgit v1.2.3