File indexing completed on 2024-05-12 15:31:20

0001 // SPDX-License-Identifier: LGPL-2.1-or-later
0002 //
0003 // SPDX-FileCopyrightText: 2009 Bastian Holst <bastianholst@gmx.de>
0004 //
0005 
0006 // Self
0007 #include "FakeWeatherItem.h"
0008 
0009 using namespace Marble;
0010 
0011 FakeWeatherItem::FakeWeatherItem( QObject *parent )
0012     : WeatherItem( parent )
0013 {
0014 }
0015 
0016 FakeWeatherItem::~FakeWeatherItem()
0017 {
0018 }
0019 
0020 QString FakeWeatherItem::service() const
0021 {
0022     return QString( "fake" );
0023 }
0024 
0025 void FakeWeatherItem::addDownloadedFile( const QString& url, const QString& type )
0026 {
0027     // There are no downloadable files for the fake backend
0028     Q_UNUSED( url );
0029     Q_UNUSED( type );
0030 }