/******************************************************************************* * Control.h Control process * T.Barnaby, BEAM Ltd, 2007-05-23 ******************************************************************************* */ #ifndef Control_H #define Control_H 1 #include #include #include #include using namespace std; /// The main system control class class Control { public: Control(); ~Control(); // Main functionality BError init(); ///< Initialise the system void run(); ///< Start the system running Config oconfig; NetworkHttp ohttpServer; }; #endif