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


DropWeightServer::DropWeightServer(const char *name)
  : DropWeightIF_SK(name)
{
  _watchDogTimeout = 0;
}


DropWeightServer::~DropWeightServer()
{
}


long DropWeightServer::release()
{
  return 0;
}


Boolean DropWeightServer::released()
{
  // Always assume released for now!
  return True;
}


long DropWeightServer::setWatchdogTimeout(long timeout)
{
  _watchDogTimeout = timeout;
  return 0;
}


long DropWeightServer::watchdogTimeout()
{
  return _watchDogTimeout;
}


long DropWeightServer::resetWatchdog()
{
  return 0;
}



