// // 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 FAKEWEATHERITEM_H #define FAKEWEATHERITEM_H #include "WeatherItem.h" class QString; namespace Marble { class FakeWeatherItem : public WeatherItem { public: FakeWeatherItem( QObject *parent = 0 ); ~FakeWeatherItem(); QString service() const; void addDownloadedFile( const QString& url, const QString& type ); }; } // namespace Marble #endif // FAKEWEATHERITEM_H