GenericAutoPilotPlugin.cc 919 Bytes
Newer Older
1 2
/****************************************************************************
 *
3
 * (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
4 5 6 7 8 9
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

10 11 12 13 14 15

/// @file
///     @author Don Gagne <don@thegagnes.com>

#include "GenericAutoPilotPlugin.h"

16 17
GenericAutoPilotPlugin::GenericAutoPilotPlugin(Vehicle* vehicle, QObject* parent) :
    AutoPilotPlugin(vehicle, parent)
18
{
DonLakeFlyer's avatar
DonLakeFlyer committed
19 20 21
    if (!vehicle) {
        qWarning() << "Internal error";
    }
22 23
}

24
const QVariantList& GenericAutoPilotPlugin::vehicleComponents(void)
25
{
26
    static QVariantList emptyList;
27
    
28
    return emptyList;
Don Gagne's avatar
Don Gagne committed
29
}
30 31 32 33 34 35

QString GenericAutoPilotPlugin:: prerequisiteSetup(VehicleComponent* component) const
{
    Q_UNUSED(component);
    return QString();
}