Files
retrobsd/tools/configsys/device.h
2014-04-09 14:27:18 +01:00

20 lines
315 B
C++

#ifndef _DEVICE_H
#define _DEVICE_H
#include <map>
#include <string>
#include "cluster.h"
using namespace std;
class device {
public:
map <string,cluster> options; // Option clusters
cluster always; // Always cluster
public:
bool load(const char *);
};
#endif