#ifndef KIMODEM_MODE_H #define KIMODEM_MODE_H struct Mode { bool (*Process)(); bool (*Update)(); }; static Mode *currentMode = new Mode; #endif