AP_ICEngine: tidy includes

This commit is contained in:
Peter Barker 2022-03-01 12:19:09 +11:00 committed by Andrew Tridgell
parent b158e15ed4
commit 0ea46a93a1
2 changed files with 4 additions and 4 deletions

View File

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

View File

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