mirror of https://github.com/ArduPilot/ardupilot
22 lines
404 B
C
22 lines
404 B
C
|
#pragma once
|
||
|
|
||
|
#include "AP_Networking_Config.h"
|
||
|
|
||
|
#if AP_NETWORKING_BACKEND_SITL
|
||
|
#include "AP_Networking_Backend.h"
|
||
|
|
||
|
class AP_Networking_SITL : public AP_Networking_Backend
|
||
|
{
|
||
|
public:
|
||
|
using AP_Networking_Backend::AP_Networking_Backend;
|
||
|
|
||
|
/* Do not allow copies */
|
||
|
CLASS_NO_COPY(AP_Networking_SITL);
|
||
|
|
||
|
bool init() override {
|
||
|
return true;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
#endif // AP_NETWORKING_BACKEND_SITL
|