/****************************************************************************/
/* Copyright (c) 2007 MBARI                                                 */
/* MBARI Proprietary Information. All rights reserved.                      */
/****************************************************************************/
/* Summary  :                                                               */
/* Filename : SupervisorOutput.h                                                   */
/* Author   :                                                               */
/* Project  :                                                               */
/* Version  : 1.0                                                           */
/* Created  : 06/07/2007                                                    */
/* Modified :                                                               */
/* Archived :                                                               */
/****************************************************************************/
/* Modification History:                                                    */
/****************************************************************************/

#ifndef _SUPERVISOROUTPUT_H
#define _SUPERVISOROUTPUT_H

#include "SharedData.h"

#define SupervisorOutputName "SupervisorOutout"


class SupervisorOutput: public SharedData {

public:

  struct Data {
	Boolean sim;
  };


  SupervisorOutput(Access access = NoAccess, Boolean init = False);
  ~SupervisorOutput();
  Data data;
  void read(), write(), clear();
};

#endif //_SUPERVISOROUTPUT_H
