mirror of https://github.com/ArduPilot/ardupilot
15 lines
294 B
C
15 lines
294 B
C
|
#pragma once
|
||
|
|
||
|
#include "AP_VisualOdom_Backend.h"
|
||
|
|
||
|
class AP_VisualOdom_MAV : public AP_VisualOdom_Backend
|
||
|
{
|
||
|
|
||
|
public:
|
||
|
// constructor
|
||
|
AP_VisualOdom_MAV(AP_VisualOdom &frontend);
|
||
|
|
||
|
// consume VISION_POSITION_DELTA MAVLink message
|
||
|
void handle_msg(mavlink_message_t *msg) override;
|
||
|
};
|