X-Git-Url: http://git.indexdata.com/?p=yazproxy-moved-to-github.git;a=blobdiff_plain;f=src%2Fmsg-thread.h;h=a8f17ecc754ab130a81756fbcd9945ac1be28aa3;hp=b7e4e577be0be8ad7be23a92201563a030c600e0;hb=08f7a81cd0645d2ae9609f672629ea94c7d2e2ad;hpb=ce193eb0444478dc61e832497ab7f4a7ae73c0c6 diff --git a/src/msg-thread.h b/src/msg-thread.h index b7e4e57..a8f17ec 100644 --- a/src/msg-thread.h +++ b/src/msg-thread.h @@ -1,4 +1,4 @@ -/* $Id: msg-thread.h,v 1.10 2006-03-30 13:29:23 adam Exp $ +/* $Id: msg-thread.h,v 1.11 2006-03-30 14:16:34 adam Exp $ Copyright (c) 1998-2006, Index Data. This file is part of the yazproxy. @@ -19,27 +19,24 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include -#include - #include #include -class IMsg_Thread { +class YAZ_EXPORT IMsg_Thread { public: virtual IMsg_Thread *handle() = 0; virtual void result() = 0; virtual ~IMsg_Thread(); }; -class Msg_Thread_Queue_List { +class YAZ_EXPORT Msg_Thread_Queue_List { friend class Msg_Thread_Queue; private: IMsg_Thread *m_item; Msg_Thread_Queue_List *m_next; }; -class Msg_Thread_Queue { +class YAZ_EXPORT Msg_Thread_Queue { public: Msg_Thread_Queue(); void enqueue(IMsg_Thread *in); @@ -49,7 +46,7 @@ class Msg_Thread_Queue { Msg_Thread_Queue_List *m_list; }; -class Msg_Thread : public yazpp_1::ISocketObserver { +class YAZ_EXPORT Msg_Thread : public yazpp_1::ISocketObserver { class Private; public: Msg_Thread(yazpp_1::ISocketObservable *obs, int no_threads);