/*1This program is free software: you can redistribute it and/or modify2it under the terms of the GNU General Public License as published by3the Free Software Foundation, either version 3 of the License, or4(at your option) any later version.56This program is distributed in the hope that it will be useful,7but WITHOUT ANY WARRANTY; without even the implied warranty of8MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the9GNU General Public License for more details.1011You should have received a copy of the GNU General Public License12along with this program. If not, see <http://www.gnu.org/licenses/>.13*/14#pragma once1516#include <AP_Rally/AP_Rally_config.h>1718#if HAL_RALLY_ENABLED1920#include <AP_Rally/AP_Rally.h>21#include <AP_AHRS/AP_AHRS.h>2223class AP_Rally_Copter : public AP_Rally24{25public:26AP_Rally_Copter() : AP_Rally() { }2728/* Do not allow copies */29CLASS_NO_COPY(AP_Rally_Copter);3031private:32bool is_valid(const Location &rally_point) const override;33};3435#endif // HAL_RALLY_ENABLED363738