mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
2ffb08b9ca
Like was done for AP_HAL_Linux in 2ac96b9
("AP_HAL_Linux: remove prefix
from AP_HAL_Linux classes"), remove the "Empty" prefix from class names
since we are already inside the Empty namespace.
15 lines
297 B
C++
15 lines
297 B
C++
#pragma once
|
|
|
|
#include <AP_HAL/AP_HAL.h>
|
|
|
|
#include "AP_HAL_Empty_Namespace.h"
|
|
#include "PrivateMember.h"
|
|
|
|
class HAL_Empty : public AP_HAL::HAL {
|
|
public:
|
|
HAL_Empty();
|
|
void run(int argc, char* const* argv, Callbacks* callbacks) const override;
|
|
private:
|
|
Empty::PrivateMember *_member;
|
|
};
|