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