//=========================================================================
// Summary  : 
// Filename : DeviceList.h
// Author   : marsh
// Project  : 
// Revision : 1
// Created  : 2000/08/19
// Modified : 2000/08/19
//=========================================================================
// Description :
//=========================================================================
#ifndef _DEVICELIST_H
#define _DEVICELIST_H

#include "ItemList.h"

#define DEVICE_LIST_ID "device"

class DeviceList : public ItemList
{

public:
     DeviceList( );

     virtual ~DeviceList();

     int loadDevices( const char * );
     void dumpDeviceList( void );
     
protected:

     virtual Item *addItem( const char * );

};


#endif
