moved chan out to derived class

This commit is contained in:
Jeff Hill
2002-05-09 00:26:13 +00:00
parent e696fa03eb
commit 78e871e05c
4 changed files with 62 additions and 58 deletions

View File

@@ -18,8 +18,8 @@
#include "nciu.h"
#include "cac.h"
netReadNotifyIO::netReadNotifyIO ( nciu & chan, cacReadNotify & notify ) :
baseNMIU ( chan ), notify ( notify )
netReadNotifyIO::netReadNotifyIO ( nciu & chanIn, cacReadNotify & notify ) :
notify ( notify ), chan ( chanIn )
{
}
@@ -66,4 +66,10 @@ class netSubscription * netReadNotifyIO::isSubscription ()
return 0;
}
nciu & netReadNotifyIO::channel () const
{
return this->chan;
}