Feed reader refactoring started.

This commit is contained in:
Martin Rotter 2016-08-13 13:17:56 +02:00
parent db2d60a45e
commit 79d476a49c
3 changed files with 732 additions and 669 deletions

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,26 @@
// This file is part of RSS Guard.
//
// Copyright (C) 2011-2016 by Martin Rotter <rotter.martinos@gmail.com>
//
// RSS Guard is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// RSS Guard is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with RSS Guard. If not, see <http://www.gnu.org/licenses/>.
#include "miscellaneous/feedreader.h"
FeedReader::FeedReader(QObject *parent) : QObject(parent) {
}
FeedReader::~FeedReader() {
qDebug("Destroying FeedReader instance.");
}

View File

@ -0,0 +1,35 @@
// This file is part of RSS Guard.
//
// Copyright (C) 2011-2016 by Martin Rotter <rotter.martinos@gmail.com>
//
// RSS Guard is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// RSS Guard is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with RSS Guard. If not, see <http://www.gnu.org/licenses/>.
#ifndef FEEDREADER_H
#define FEEDREADER_H
#include <QObject>
class FeedReader : public QObject {
Q_OBJECT
public:
explicit FeedReader(QObject *parent = 0);
virtual ~FeedReader();
signals:
public slots:
};
#endif // FEEDREADER_H