File indexing completed on 2024-12-29 05:00:27

0001 /*
0002  *   SPDX-FileCopyrightText: 2007 Tobias Koenig <tokoe@kde.org>
0003  *   SPDX-FileCopyrightText: 2008 Anne-Marie Mahfouf <annma@kde.org>
0004  *
0005  *   SPDX-License-Identifier: GPL-2.0-or-later
0006  */
0007 
0008 #pragma once
0009 
0010 #include "potdprovider.h"
0011 
0012 class KJob;
0013 
0014 /**
0015  * This class provides the image for EPOD
0016  * "Earth Science Picture Of the Day"
0017  * located at https://epod.usra.edu/.
0018  */
0019 class EpodProvider : public PotdProvider
0020 {
0021     Q_OBJECT
0022 
0023 public:
0024     explicit EpodProvider(QObject *parent, const KPluginMetaData &data, const QVariantList &args);
0025 
0026 private:
0027     void pageRequestFinished(KJob *job);
0028     void imageRequestFinished(KJob *job);
0029 };