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"
netWriteNotifyIO::netWriteNotifyIO ( nciu &chan, cacWriteNotify &notifyIn ) :
baseNMIU ( chan ), notify ( notifyIn )
netWriteNotifyIO::netWriteNotifyIO ( nciu & chanIn, cacWriteNotify & notifyIn ) :
notify ( notifyIn ), chan ( chanIn )
{
}
@@ -67,3 +67,10 @@ class netSubscription * netWriteNotifyIO::isSubscription ()
return 0;
}
nciu & netWriteNotifyIO::channel () const
{
return this->chan;
}