ICU-4707 Fix some compiler warnings about missing virtual destructors

X-SVN-Rev: 19441
This commit is contained in:
George Rhoten 2006-03-25 23:27:09 +00:00
parent 4763cb63a0
commit 9dd557b1ae
2 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,6 @@
/********************************************************************
* COPYRIGHT:
* Copyright (c) 2002-2005, International Business Machines Corporation and
* Copyright (c) 2002-2006, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
@ -9,6 +9,7 @@
#include "unicode/tstdtmod.h"
#include "cmemory.h"
TestLog::~TestLog() {}
TestDataModule *TestDataModule::getTestDataModule(const char* name, TestLog& log, UErrorCode &status)
{

View File

@ -1,6 +1,6 @@
/********************************************************************
* COPYRIGHT:
* Copyright (c) 2004, International Business Machines Corporation and
* Copyright (c) 2004-2006, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
@ -19,6 +19,7 @@
*/
class TestLog {
public:
virtual ~TestLog();
virtual void errln( const UnicodeString &message ) = 0;
virtual const char* getTestDataPath(UErrorCode& err) = 0;
};