/****************************************************************************/
/* Copyright (c) 2003 MBARI                                                 */
/* MBARI Proprietary Information. All rights reserved.                      */
/****************************************************************************/
/* Summary  :                                                               */
/* Filename : FastCatOutput.cc                                              */
/* Author   :                                                               */
/* Project  :                                                               */
/* Version  : 1.0                                                           */
/* Created  : 09/16/2003                                                    */
/* Modified :                                                               */
/* Archived :                                                               */
/****************************************************************************/
/* Modification History:                                                    */
/****************************************************************************/
#include <malloc.h>
#include "FastCatOutput.h"
#include "Syslog.h"


FastCatOutput::FastCatOutput(Access access, Boolean init)
  : SharedData("FastCat", 
               sizeof(FastCatOutput::Data),
               access, init)
{
}


FastCatOutput::~FastCatOutput()
{
}

void FastCatOutput::read()
{
  SharedData::read((void *)&data);
}


void FastCatOutput::write()
{
  SharedData::write((void *)&data);
}



