/**************************************************************************** * * (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org> * * QGroundControl is licensed according to the terms in the file * COPYING.md in the root of the source code directory. * ****************************************************************************/#ifndef APMSubFrameComponent_H#define APMSubFrameComponent_H#include "VehicleComponent.h"classAPMSubFrameComponent:publicVehicleComponent{Q_OBJECTpublic:APMSubFrameComponent(Vehicle*vehicle,AutoPilotPlugin*autopilot,QObject*parent=NULL);// Virtuals from VehicleComponentQStringListsetupCompleteChangedTriggerList(void)constfinal;// Virtuals from VehicleComponentQStringname(void)constfinal;QStringdescription(void)constfinal;QStringiconResource(void)constfinal;boolrequiresSetup(void)constfinal;boolsetupComplete(void)constfinal;QUrlsetupSource(void)constfinal;QUrlsummaryQmlSource(void)constfinal;private:constQString_name;};#endif