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

26 lines
422 B
C++

#ifndef _CONFIG_H
#define _CONFIG_H
#include <map>
#include <string>
#include "mapping.h"
#include "instance.h"
using namespace std;
class config {
public:
string pinmapping;
instance core;
map <string,instance> instances;
string configpath;
string linker;
map <string,string> options;
public:
bool load(const char *);
config(string);
};
#endif