/**************************************************************************** * * (c) 2009-2019 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. * * @file * @brief Custom Autopilot Plugin * @author Gus Grubba <gus@auterion.com> */#pragma once#include "PX4AutoPilotPlugin.h"#include "Vehicle.h"/// Custom overrides from standard PX4AutoPilotPlugin implementationclassCustomAutoPilotPlugin:publicPX4AutoPilotPlugin{Q_OBJECTpublic:CustomAutoPilotPlugin(Vehicle*vehicle,QObject*parent);constQVariantList&vehicleComponents()override;privateslots:void_advancedChanged(booladvanced);private:QVariantList_components;};