#ifndef PROGRAM_H #define PROGRAM_H #include #include #include #include class Program { public: /** * Program startup */ Program(); /** * Program main loop */ void loop(); }; #endif