24 lines
378 B
C++
24 lines
378 B
C++
|
|
// DeviceFolder.h
|
|
// DeviceFolder object for use in devfs
|
|
// Author: Josh Holtrop
|
|
// Date: 06/03/04
|
|
// Modified: 06/03/04
|
|
|
|
#ifndef __HOS_DEVICEFOLDER__
|
|
#define __HOS_DEVICEFOLDER__ __HOS_DEVICEFOLDER__
|
|
|
|
#include "lang/LinkedList.h"
|
|
#include "Device.h"
|
|
|
|
class DeviceFolder
|
|
{
|
|
public:
|
|
LinkedList<Device> devices;
|
|
LinkedList<DeviceFolder> folders;
|
|
// DeviceFolder();
|
|
};
|
|
|
|
#endif
|
|
|