From b8016fbe4a2b4c32a17dcc3bc7e3900479650d95 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 28 Mar 2002 00:24:59 +0000 Subject: [PATCH] made baseNMIU::show() virtual --- src/ca/netIO.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/ca/netIO.h b/src/ca/netIO.h index 5fbb63ae5..09e8c93d8 100644 --- a/src/ca/netIO.h +++ b/src/ca/netIO.h @@ -34,7 +34,7 @@ public: virtual void completion ( unsigned type, arrayElementCount count, const void *pData ) = 0; virtual class netSubscription * isSubscription (); - void show ( unsigned level ) const; + virtual void show ( unsigned level ) const; ca_uint32_t getID () const; nciu & channel () const; protected: @@ -45,8 +45,8 @@ protected: // nciu & chan; private: - baseNMIU ( const baseNMIU & ); - baseNMIU & operator = ( const baseNMIU & ); + baseNMIU ( const baseNMIU & ); + baseNMIU & operator = ( const baseNMIU & ); }; class netSubscription : public baseNMIU { @@ -84,8 +84,8 @@ private: void operator delete ( void *, size_t, tsFreeList < class netSubscription, 1024, epicsMutexNOOP > & ); # endif - netSubscription ( const netSubscription & ); - netSubscription & operator = ( const netSubscription & ); + netSubscription ( const netSubscription & ); + netSubscription & operator = ( const netSubscription & ); }; class netReadNotifyIO : public baseNMIU { @@ -112,8 +112,8 @@ private: void operator delete ( void *, size_t, tsFreeList < class netReadNotifyIO, 1024, epicsMutexNOOP > & ); # endif - netReadNotifyIO ( const netReadNotifyIO & ); - netReadNotifyIO & operator = ( const netReadNotifyIO & ); + netReadNotifyIO ( const netReadNotifyIO & ); + netReadNotifyIO & operator = ( const netReadNotifyIO & ); }; class netWriteNotifyIO : public baseNMIU { @@ -140,8 +140,8 @@ private: void operator delete ( void *, size_t, tsFreeList < class netWriteNotifyIO, 1024, epicsMutexNOOP > & ); # endif - netWriteNotifyIO ( const netWriteNotifyIO & ); - netWriteNotifyIO & operator = ( const netWriteNotifyIO & ); + netWriteNotifyIO ( const netWriteNotifyIO & ); + netWriteNotifyIO & operator = ( const netWriteNotifyIO & ); }; inline ca_uint32_t baseNMIU::getID () const