Files
pcas/src/ca/baseNMIU.cpp
2001-04-16 22:38:38 +00:00

37 lines
614 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"
#include "nciu_IL.h"
#include "baseNMIU_IL.h"
baseNMIU::baseNMIU ( nciu &chanIn ) :
chan ( chanIn )
{
}
baseNMIU::~baseNMIU ()
{
}
class netSubscription * baseNMIU::isSubscription ()
{
return 0;
}
void baseNMIU::show ( unsigned /* level */ ) const
{
printf ( "CA IO primitive at %p\n",
static_cast <const void *> ( this ) );
}