mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
152edf7189
Using a global .dir-locals.el file is a better alternative than reincluding the same emacs header in every file of the project.
13 lines
253 B
C++
13 lines
253 B
C++
#include "AC_InputManager.h"
|
|
#include <AP_Math/AP_Math.h>
|
|
#include <AP_HAL/AP_HAL.h>
|
|
|
|
extern const AP_HAL::HAL& hal;
|
|
|
|
const AP_Param::GroupInfo AC_InputManager::var_info[] = {
|
|
|
|
// Placeholder for future parameters in this class.
|
|
|
|
AP_GROUPEND
|
|
};
|