uncrustify libraries/AP_Compass/AP_Compass_HIL.h

This commit is contained in:
uncrustify 2012-08-16 23:19:22 -07:00 committed by Pat Hickey
parent c8ede643dc
commit c693a6002b
1 changed files with 6 additions and 4 deletions

View File

@ -6,10 +6,12 @@
class AP_Compass_HIL : public Compass class AP_Compass_HIL : public Compass
{ {
public: public:
AP_Compass_HIL() : Compass() { product_id = AP_COMPASS_TYPE_HIL; } AP_Compass_HIL() : Compass() {
bool read(void); product_id = AP_COMPASS_TYPE_HIL;
void setHIL(float Mag_X, float Mag_Y, float Mag_Z); }
bool read(void);
void setHIL(float Mag_X, float Mag_Y, float Mag_Z);
}; };
#endif #endif