mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
13 lines
169 B
C++
13 lines
169 B
C++
#pragma once
|
|
|
|
#include "SIM_SerialDevice.h"
|
|
|
|
namespace SITL {
|
|
|
|
class ADSB_Device : public SerialDevice
|
|
{
|
|
using SerialDevice::SerialDevice;
|
|
};
|
|
|
|
}; // namespace SITL
|