diff --git a/src/ca/cacIO.h b/src/ca/cacIO.h index 44051b1a2..fd142ce8d 100644 --- a/src/ca/cacIO.h +++ b/src/ca/cacIO.h @@ -172,4 +172,22 @@ epicsShareExtern cacServiceList cacGlobalServiceList; epicsShareFunc int epicsShareAPI ca_register_service ( struct cacServiceIO *pService ); +inline void cacNotifyIO::completionNotify () +{ + this->notify.completionNotify (); +} +inline void cacNotifyIO::completionNotify ( unsigned type, unsigned long count, const void *pData ) +{ + this->notify.completionNotify ( type, count, pData ); +} + +inline void cacNotifyIO::exceptionNotify ( int status, const char *pContext ) +{ + this->notify.exceptionNotify ( status, pContext ); +} + +inline void cacNotifyIO::exceptionNotify ( int status, const char *pContext, unsigned type, unsigned long count ) +{ + this->notify.exceptionNotify ( status, pContext, type, count ); +} \ No newline at end of file