#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
