Add destructor for class (interface) IMsg_Thread.
authorAdam Dickmeiss <adam@indexdata.dk>
Mon, 26 Sep 2005 09:22:59 +0000 (09:22 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Mon, 26 Sep 2005 09:22:59 +0000 (09:22 +0000)
src/msg-thread.cpp
src/msg-thread.h

index e277584..69ea656 100644 (file)
@@ -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;
index 47316d0..b4c39de 100644 (file)
@@ -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 {