mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-11 02:18:29 -04:00
ee542aac8b
These are "left-overs" from how things worked before commit "AP_HAL: make code not depend on concrete HAL implementations". The real declaration now lives inside get_HAL() function. Use the opportunitiy to change the files to use "#pragma once".
15 lines
302 B
C++
15 lines
302 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::EmptyPrivateMember *_member;
|
|
};
|