mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 15:08:28 -04:00
f36e8d9c05
This centralized namespace header encourages centralizing things on umbrella headers that are a pain to maintain. Force each part of AP_HAL_Linux to include what is used. While at it, do some whitespace cleanups and minor changes to adhere to coding style.
10 lines
189 B
C++
10 lines
189 B
C++
#pragma once
|
|
|
|
#include <AP_HAL/AP_HAL.h>
|
|
|
|
class HAL_Linux : public AP_HAL::HAL {
|
|
public:
|
|
HAL_Linux();
|
|
void run(int argc, char* const* argv, Callbacks* callbacks) const override;
|
|
};
|