rssguard/src/librssguard/services/tt-rss/ttrssfeed.h
2021-05-07 07:19:39 +02:00

24 lines
456 B
C++

// For license of this file, see <project-root-folder>/LICENSE.md.
#ifndef TTRSSFEED_H
#define TTRSSFEED_H
#include "services/abstract/feed.h"
class TtRssServiceRoot;
class TtRssFeed : public Feed {
Q_OBJECT
public:
explicit TtRssFeed(RootItem* parent = nullptr);
virtual bool canBeDeleted() const;
virtual bool deleteViaGui();
private:
TtRssServiceRoot* serviceRoot() const;
bool removeItself();
};
#endif // TTRSSFEED_H