moved chan out to derived class
This commit is contained in:
@@ -18,8 +18,8 @@
|
||||
#include "nciu.h"
|
||||
#include "cac.h"
|
||||
|
||||
netWriteNotifyIO::netWriteNotifyIO ( nciu &chan, cacWriteNotify ¬ifyIn ) :
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user