#include "Config.h" #include #include using namespace std; Config::Entry::Entry(const string & name) { this->name = name; pin = -1; on_start = NONE; on_exit = NONE; on_lock = NONE; on_unlock = NONE; } void Config::read(const char * file) { }