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

Ips4Input::Ips4Input(Access access, Boolean init)
  : SharedData(Ips4InputName, 
               sizeof(Ips4Input::Ips4Data),
               access, init)
{
    memset(&data, 0, sizeof(data));
    data._profile = RESET;
}


Ips4Input::~Ips4Input()
{
}

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


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