#ifndef _DEVICE_H
#define _DEVICE_H

#include "Item.h"


class Device : public Item 
{
public:
     
     Device( const char * );

     virtual ~Device();

     char *port()
	  { return (_port != NULL) ? _port : ""; };
     char *driver()
	  { return (_driver != NULL) ? _driver : ""; };
     short priority()
	  { return _priority; };

protected:

     char *_port;     
     char *_driver;
     long _priority;
};

#endif
