/****************************************************************************/
/* Copyright (c) 2000 MBARI                                                 */
/* MBARI Proprietary Information. All rights reserved.                      */
/****************************************************************************/
/* Summary  :                                                               */
/* Filename : PSA916Output.cc                                               */
/* Author   :                                                               */
/* Project  :                                                               */
/* Version  : 1.0                                                           */
/* Created  : 02/07/2000                                                    */
/* Modified :                                                               */
/* Archived :                                                               */
/****************************************************************************/
/* Modification History:                                                    */
/****************************************************************************/

#include "PSA916Output.h"
#include "Syslog.h"

PSA916Output::PSA916Output(Access access, Boolean init)
  : SharedData(PSA916OutputName, 
               sizeof(PSA916Output::Data),
               access, init)
{
}


PSA916Output::~PSA916Output()
{
}


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

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



