RSS Git Download  Clone
Raw View History
Blames found: 1 Mode: text/x-c++src Binary: false


Hang on, we reloading big blames...
/******************************************************************************* * Control.h Control process * T.Barnaby, BEAM Ltd, 2007-05-23 ******************************************************************************* */ #ifndef Control_H #define Control_H 1 #include <stdint.h> #include <BError.h> #include <Config.h> #include <NetworkHttp.h> 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