Use generic session class whenever possible

This commit is contained in:
Martin Hurton
2013-06-29 11:24:46 +02:00
parent 1beec5e960
commit fd7e9b8c46
25 changed files with 6 additions and 344 deletions

View File

@@ -49,21 +49,6 @@ namespace zmq
const sub_t &operator = (const sub_t&);
};
class sub_session_t : public xsub_session_t
{
public:
sub_session_t (zmq::io_thread_t *io_thread_, bool connect_,
zmq::socket_base_t *socket_, const options_t &options_,
const address_t *addr_);
~sub_session_t ();
private:
sub_session_t (const sub_session_t&);
const sub_session_t &operator = (const sub_session_t&);
};
}
#endif