SlugsMAV.h 331 Bytes
Newer Older
1 2 3 4 5 6 7
#ifndef SLUGSMAV_H
#define SLUGSMAV_H

#include "UAS.h"

class SlugsMAV : public UAS
{
8
    Q_OBJECT
9 10 11 12
public:
    SlugsMAV(MAVLinkProtocol* mavlink, int id = 0);

public slots:
13
    /** @brief Receive a MAVLink message from this MAV */
14 15 16 17
    void receiveMessage(LinkInterface* link, mavlink_message_t message);
};

#endif // SLUGSMAV_H