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

#include "PlanElementController.h"
11
#include "PlanMasterController.h"
12
#include "QGCApplication.h"
13
#include "MultiVehicleManager.h"
14 15
#include "SettingsManager.h"
#include "AppSettings.h"
16

17
PlanElementController::PlanElementController(PlanMasterController* masterController, QObject* parent)
18 19 20
    : QObject           (parent)
    , _masterController (masterController)
    , _flyView          (false)
21 22 23 24 25 26 27 28 29
{

}

PlanElementController::~PlanElementController()
{

}

30
void PlanElementController::start(bool flyView)
31
{
32
    _flyView = flyView;
33
}