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


DropWeight::DropWeight()
  : DropWeightIF_SK()
{
  _watchDogTimeout = 0;
}


DropWeight::~DropWeight()
{
}


long DropWeight::release(DropWeightIF::Weight weight)
{
  return 0;
}


Boolean DropWeight::released(DropWeightIF::Weight weight)
{
  // Not implemented
  return True;
}


long DropWeight::setWatchdogTimeout(long timeout, DropWeightIF::Weight weight)
{
  _watchDogTimeout = timeout;
  return 0;
}


long DropWeight::watchdogTimeout(DropWeightIF::Weight weight)
{
  return _watchDogTimeout;
}


long DropWeight::resetWatchdog(DropWeightIF::Weight weight)
{
  return 0;
}



int DropWeight::spawnAuxTasks()
{
  return 0;
}
