/*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.h>1718#if HAL_RALLY_ENABLED1920class AP_Rally_Rover : public AP_Rally21{22public:23AP_Rally_Rover() : AP_Rally() { }2425/* Do not allow copies */26CLASS_NO_COPY(AP_Rally_Rover);2728private:29bool is_valid(const Location &rally_point) const override;30};3132#endif // HAL_RALLY_ENABLED333435