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

#include "DeviceFramework.h"

/*
CLASS 
EthernetDevice

DESCRIPTION
Device driver for ethernet subsystems

AUTHOR
Andrew Pearce

*/

class EthernetDevice : public DeviceFramework {
public:


  ///////////////////////////////////////////////////////////////////
  // Constructor
  EthernetDevice();

  ~EthernetDevice();

  virtual TaskType taskType();
  
};

#endif
