major revisions
This commit is contained in:
33
src/ca/baseNMIU.cpp
Normal file
33
src/ca/baseNMIU.cpp
Normal file
@@ -0,0 +1,33 @@
|
||||
|
||||
/* $Id$
|
||||
*
|
||||
* L O S A L A M O S
|
||||
* Los Alamos National Laboratory
|
||||
* Los Alamos, New Mexico 87545
|
||||
*
|
||||
* Copyright, the Regents of the University of California.
|
||||
*
|
||||
* Author: Jeff Hill
|
||||
*/
|
||||
|
||||
#include "iocinf.h"
|
||||
|
||||
baseNMIU::baseNMIU ( nciu &chanIn ) : chan (chanIn)
|
||||
{
|
||||
this->chan.installIO ( *this );
|
||||
}
|
||||
|
||||
void baseNMIU::destroy ()
|
||||
{
|
||||
delete this;
|
||||
}
|
||||
|
||||
baseNMIU::~baseNMIU ()
|
||||
{
|
||||
this->chan.uninstallIO ( *this );
|
||||
}
|
||||
|
||||
int baseNMIU::subscriptionMsg ()
|
||||
{
|
||||
return ECA_NORMAL;
|
||||
}
|
||||
Reference in New Issue
Block a user