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

#include "DriverStatus.h"

class DriverServer {

public:

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

  Boolean deviceReady();

protected:

  DriverStatus *_driverStatus;

};

#endif
