mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-22 00:28:30 -04:00
AP_ICEngine: tidy includes
This commit is contained in:
parent
b158e15ed4
commit
0ea46a93a1
@ -22,6 +22,7 @@
|
||||
#include <RC_Channel/RC_Channel.h>
|
||||
|
||||
#include "AP_ICEngine.h"
|
||||
#include <AP_RPM/AP_RPM.h>
|
||||
|
||||
extern const AP_HAL::HAL& hal;
|
||||
|
||||
|
@ -18,13 +18,12 @@
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#include <AP_HAL/AP_HAL.h>
|
||||
#include <AP_RPM/AP_RPM.h>
|
||||
#include <AP_Param/AP_Param.h>
|
||||
|
||||
class AP_ICEngine {
|
||||
public:
|
||||
// constructor
|
||||
AP_ICEngine(const AP_RPM &_rpm);
|
||||
AP_ICEngine(const class AP_RPM &_rpm);
|
||||
|
||||
static const struct AP_Param::GroupInfo var_info[];
|
||||
|
||||
@ -56,7 +55,7 @@ public:
|
||||
private:
|
||||
static AP_ICEngine *_singleton;
|
||||
|
||||
const AP_RPM &rpm;
|
||||
const class AP_RPM &rpm;
|
||||
|
||||
enum ICE_State state;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user