#ifndef _INSTANCE_H #define _INSTANCE_H #include #include #include "cluster.h" using namespace std; class instance { public: map settings; // Settings from config int unit; string device; }; #endif