// // This file is part of the Marble Desktop Globe. // // This program is free software licensed under the GNU LGPL. You can // find a copy of this license in LICENSE.txt in the top directory of // the source code. // // Copyright 2009 Bastian Holst // #ifndef FAKEWEATHERSERVICE_H #define FAKEWEATHERSERVICE_H #include "AbstractWeatherService.h" namespace Marble { class FakeWeatherService : public AbstractWeatherService { Q_OBJECT public: FakeWeatherService( QObject *parent ); ~FakeWeatherService(); public Q_SLOTS: void getAdditionalItems( const GeoDataLatLonAltBox& box, MarbleDataFacade *facade, qint32 number = 10 ); }; } // namespace Marble #endif // FAKEWEATHERSERVICE_H