moved chan out to derived class
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user