/*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*/1415#pragma once1617#include "GPS_Backend.h"1819#include <SITL/SITL.h>2021#if AP_SIM_GPS_ENABLED2223class AP_GPS_SITL : public AP_GPS_Backend24{2526public:2728using AP_GPS_Backend::AP_GPS_Backend;2930bool read() override;3132const char *name() const override { return "SITL"; }3334private:3536uint32_t last_update_ms;37};3839#endif // AP_SIM_GPS_ENABLED404142