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

class DropWeightServer : public DropWeightIF_SK {

public:

  DropWeightServer(const char *name);
  ~DropWeightServer();


protected:

  virtual long release();
  virtual Boolean released();
  virtual long setWatchdogTimeout(long timeout);
  virtual long watchdogTimeout();
  virtual long resetWatchdog();

private:

  long _watchDogTimeout;
};

#endif
