From dd3201e05001c048110d660181e94f059964b0b7 Mon Sep 17 00:00:00 2001 From: uncrustify Date: Thu, 16 Aug 2012 23:21:08 -0700 Subject: [PATCH] uncrustify libraries/AP_Relay/AP_Relay.h --- libraries/AP_Relay/AP_Relay.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/libraries/AP_Relay/AP_Relay.h b/libraries/AP_Relay/AP_Relay.h index a69c10edcf..5b73410ed8 100644 --- a/libraries/AP_Relay/AP_Relay.h +++ b/libraries/AP_Relay/AP_Relay.h @@ -15,22 +15,22 @@ /// @class AP_Relay /// @brief Class to manage the APM relay -class AP_Relay{ +class AP_Relay { public: - // activate the relay - void on(); + // activate the relay + void on(); - // de-activate the relay - void off(); + // de-activate the relay + void off(); - // toggle the relay status - void toggle(); + // toggle the relay status + void toggle(); - // set the relay status (on/off) - void set(bool status); + // set the relay status (on/off) + void set(bool status); - // get the relay status (on/off) - bool get(); + // get the relay status (on/off) + bool get(); };