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

NavigationOutput::NavigationOutput(Access access,
				   Boolean init)
  : SharedData(NavigationOutputName, 
	       sizeof(State),
	       access, init)
{
}


NavigationOutput::~NavigationOutput()
{
  Boolean debug = True;
  dprintf("NavigationOutput::~NavigationOutput()\n");
}


void NavigationOutput::read(State *state)
{
  SharedData::read((void *)state);
}


void NavigationOutput::write(State *state)
{
  SharedData::write((void *)state);
}


void NavigationOutput::read()
{
  SharedData::read((void *)&state);
}


void NavigationOutput::write()
{
  SharedData::write((void *)&state);
}
