major revisions

This commit is contained in:
Jeff Hill
2000-04-28 01:29:00 +00:00
parent 68c049fa73
commit 547f1b15fa
56 changed files with 8019 additions and 7241 deletions

33
src/ca/baseNMIU.cpp Normal file
View 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;
}