/****************************************************************************/
/* Copyright (c) 2015 MBARI                                                 */
/* MBARI Proprietary Information. All rights reserved.                      */
/****************************************************************************/
/* Summary  :                                                               */
/* Filename : SimulatedTerrainAid.h                                         */
/* Author   : Henthorn                                                      */
/* Project  :                                                               */
/* Version  : 1.0                                                           */
/* Created  : 05/22/2015                                                    */
/* Modified :                                                               */
/* Archived :                                                               */
/****************************************************************************/
/* Modification History:                                                    */
/****************************************************************************/
#ifndef _SimulatedTerrainAid_H
#define _SimulatedTerrainAid_H
#include "TerrainAidServer.h"

class TerrainAid;

class SimulatedTerrainAid: public TerrainAidServer {

public:

  SimulatedTerrainAid(const char *name, Boolean test=False);
  virtual ~SimulatedTerrainAid();


protected:

  virtual void get( TerrainAidIF::Data *data );

  TerrainAid *_ta;
  unsigned long _taCount, _loopsPerTRN;  

};

#endif
