ardupilot/libraries/AP_HAL_Empty/HAL_Empty_Class.h

15 lines
297 B
C
Raw Normal View History

#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();
2015-10-19 11:25:59 -03:00
void run(int argc, char* const* argv, Callbacks* callbacks) const override;
private:
Empty::PrivateMember *_member;
};