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

class BatteryServer : public BatteryIF_SK {

public:
  BatteryServer(const char *name);
  ~BatteryServer();

protected:

  virtual long life();
  virtual float cutoffVoltage();
  virtual long setCutoffVoltage(float voltage);
};

#endif
