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

BatteryServer::BatteryServer(const char *name)
  : BatteryIF_SK(name)
{
}


BatteryServer::~BatteryServer()
{
}


long BatteryServer::life()
{
  return 1000;
}


float BatteryServer::cutoffVoltage()
{
  return 15.;
}


long BatteryServer::setCutoffVoltage(float voltage)
{
  return 0;
}
