18 lines
308 B
C++
18 lines
308 B
C++
|
|
#include "VehicleManage.h"
|
||
|
|
#include "Vehicle.h"
|
||
|
|
|
||
|
|
VehicleManage::VehicleManage() {}
|
||
|
|
VehicleManage::~VehicleManage() {}
|
||
|
|
|
||
|
|
Vehicle *VehicleManage::addVehicle(int id)
|
||
|
|
{
|
||
|
|
Q_UNUSED(id)
|
||
|
|
return nullptr;
|
||
|
|
}
|
||
|
|
|
||
|
|
void VehicleManage::setMsg(int sysid, mavlink_message_t *msg)
|
||
|
|
{
|
||
|
|
Q_UNUSED(sysid)
|
||
|
|
Q_UNUSED(msg)
|
||
|
|
}
|