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

18 lines
230 B
C++

#ifndef _MAPPING_H
#define _MAPPING_H
#include <map>
using namespace std;
class mapping {
public:
map<string,string> ports;
map<string,int> pins;
public:
bool load(const char *);
};
#endif