From: Adam Dickmeiss Date: Mon, 26 Sep 2005 09:22:59 +0000 (+0000) Subject: Add destructor for class (interface) IMsg_Thread. X-Git-Tag: YAZPROXY.1.1.0.2~51 X-Git-Url: http://git.indexdata.com/?p=yazproxy-moved-to-github.git;a=commitdiff_plain;h=49ecb0941eb140efa0f0574829ac33574b97a187 Add destructor for class (interface) IMsg_Thread. --- diff --git a/src/msg-thread.cpp b/src/msg-thread.cpp index e277584..69ea656 100644 --- a/src/msg-thread.cpp +++ b/src/msg-thread.cpp @@ -1,4 +1,4 @@ -/* $Id: msg-thread.cpp,v 1.8 2005-09-12 20:09:14 adam Exp $ +/* $Id: msg-thread.cpp,v 1.9 2005-09-26 09:22:59 adam Exp $ Copyright (c) 1998-2005, Index Data. This file is part of the yaz-proxy. @@ -30,6 +30,11 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA using namespace yazpp_1; +IMsg_Thread::~IMsg_Thread() +{ + +} + Msg_Thread_Queue::Msg_Thread_Queue() { m_list = 0; diff --git a/src/msg-thread.h b/src/msg-thread.h index 47316d0..b4c39de 100644 --- a/src/msg-thread.h +++ b/src/msg-thread.h @@ -1,4 +1,4 @@ -/* $Id: msg-thread.h,v 1.6 2005-09-12 20:09:14 adam Exp $ +/* $Id: msg-thread.h,v 1.7 2005-09-26 09:22:59 adam Exp $ Copyright (c) 1998-2005, Index Data. This file is part of the yaz-proxy. @@ -34,6 +34,7 @@ class IMsg_Thread { public: virtual IMsg_Thread *handle() = 0; virtual void result() = 0; + virtual ~IMsg_Thread(); }; class Msg_Thread_Queue_List {