AP_Airspeed: replace header guard with pragma once

This commit is contained in:
Lucas De Marchi 2016-02-17 23:25:14 -02:00 committed by Andrew Tridgell
parent e0153faa85
commit ffe36afeb2
3 changed files with 3 additions and 3 deletions

View File

@ -14,11 +14,11 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
/*
backend driver class for airspeed
*/
#pragma once
#include <AP_Common/AP_Common.h>
#include <AP_HAL/AP_HAL.h>

View File

@ -14,11 +14,11 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
/*
backend driver for airspeed from I2C
*/
#pragma once
#include <AP_HAL/AP_HAL.h>

View File

@ -14,11 +14,11 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
/*
backend driver for airspeed from PX4Firmware
*/
#pragma once
#include <AP_HAL/AP_HAL.h>
#include "AP_Airspeed_Backend.h"