ardupilot/libraries/AP_HAL_Empty/HAL_Empty_Class.h
Caio Marcelo de Oliveira Filho ee542aac8b AP_HAL_Empty: Remove unused extern declaration for HALs
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".
2015-11-20 16:30:45 +09:00

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;
};