force virtual destructor
This commit is contained in:
@@ -29,6 +29,9 @@
|
||||
*
|
||||
* History
|
||||
* $Log$
|
||||
* Revision 1.3 1996/11/02 00:54:10 jhill
|
||||
* many improvements
|
||||
*
|
||||
* Revision 1.2 1996/09/04 20:20:44 jhill
|
||||
* removed sizeof(casEventMask::mask) for MSVISC++
|
||||
*
|
||||
@@ -197,3 +200,15 @@ void casEventRegistry::show(unsigned level)
|
||||
this->mutex.osiUnlock();
|
||||
}
|
||||
|
||||
//
|
||||
// casEventMaskEntry::~casEventMaskEntry()
|
||||
//
|
||||
// empty destructor forces virtual
|
||||
//
|
||||
// (not inline so that we avoid duplication resulting
|
||||
// in the object code created by some compilers)
|
||||
//
|
||||
casEventMaskEntry::~casEventMaskEntry()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
@@ -29,6 +29,9 @@
|
||||
*
|
||||
* History
|
||||
* $Log$
|
||||
* Revision 1.2 1996/11/02 00:54:11 jhill
|
||||
* many improvements
|
||||
*
|
||||
* Revision 1.1.1.1 1996/06/20 00:28:16 jhill
|
||||
* ca server installation
|
||||
*
|
||||
@@ -92,6 +95,7 @@ class casEventMaskEntry : public tsSLNode<casEventMaskEntry>,
|
||||
public:
|
||||
casEventMaskEntry (casEventMask maskIn, const char *pName) :
|
||||
casEventMask (maskIn), stringId (pName) {}
|
||||
virtual ~casEventMaskEntry();
|
||||
void show (unsigned level)
|
||||
{
|
||||
this->casEventMask::show(level);
|
||||
|
||||
Reference in New Issue
Block a user