File indexing completed on 2024-04-21 04:01:06

0001 /*
0002     This file is part of the syndication library
0003     SPDX-FileCopyrightText: 2006 Frank Osterfeld <osterfeld@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #ifndef TEST_TESTSYNDICATION_H
0009 #define TEST_TESTSYNDICATION_H
0010 
0011 #include "loader.h"
0012 
0013 #include <QObject>
0014 
0015 class TestLibSyndication : public QObject
0016 {
0017     Q_OBJECT
0018 
0019 public:
0020     TestLibSyndication(const QString &url);
0021 
0022 public Q_SLOTS:
0023 
0024     void slotLoadingComplete(Syndication::Loader *loader, Syndication::FeedPtr feed, Syndication::ErrorCode error);
0025 };
0026 
0027 #endif // TEST_TESTSYNDICATION_H