provide noop eventSignal() to be called if they post events

while in the casStrmClient destructor
This commit is contained in:
Jeff Hill
2002-07-24 00:28:11 +00:00
parent 9999763677
commit cd06c8e937

View File

@@ -241,6 +241,36 @@ caStatus casEventSys::eventsOff()
return S_cas_success;
}
// this is a pure virtual function, but we nevertheless need a
// noop to be called if they post events when a channel is being
// destroyed when we are in the casStrmClient destructor
void casEventSys::eventSignal()
{
}
// this is a pure virtual function, but we nevertheless need a
// noop to be called if they call this when we are in the
// casStrmClient destructor
caStatus casEventSys::disconnectChan (caResId id)
{
return S_cas_success;
}
// this is a pure virtual function, but we nevertheless need a
// noop to be called if they call this when we are in the
// casStrmClient destructor
void casEventSys::eventFlush ()
{
}
// this is a pure virtual function, but we nevertheless need a
// noop to be called if they call this when we are in the
// casStrmClient destructor
casRes * casEventSys::lookupRes ( const caResId &, casResType )
{
return 0;
}
//
// casEventPurgeEv::cbFunc()
//