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

class WorkSiteServer : public WorkSiteIF_SK {

public:

  WorkSiteServer();
  virtual ~WorkSiteServer();

protected:

  virtual double latitude();
  virtual double longitude();
  virtual double magneticVariation();
  virtual short nLblTransponders();

  virtual long getTransponder(short transponderNo, 
			      double *easting, double *northing, 
			      double *depth, long *turnaroundTime);

};

#endif
