//=========================================================================
// Summary  : */
// Filename : EthernetDevice.h
// Author   : */
// Project  : */
// Revision : 1
// Created  : 2000/08/19
// Modified : 2000/08/19
//=========================================================================
// Description :
//=========================================================================
#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
