// // AutoPilot.h // #ifndef _AUTOPILOT_H #define _AUTOPILOT_H #include "DetPlane.h" #include "RunHandler.h" class AutoPilot { public : AutoPilot (DetPlane*); void execute (char *); private : DetPlane* _detPlane; RunHandler _runHandler; int auto_Scan(char*, RunModes); }; #endif _AUTOPILOT_H