mirror of https://github.com/ArduPilot/ardupilot
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
|