Files
pcas/src/ca/baseNMIU.cpp
2000-04-28 01:29:00 +00:00

34 lines
528 B
C++

/* $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;
}