From 25bb508f3df670e9cec90afa9b05cd032efe6679 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Mon, 20 Nov 2000 17:35:05 +0000 Subject: [PATCH] added inline functions to avoid undefined symbols --- src/ca/cacIO.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) 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