rssguard/src/librssguard/services/owncloud/owncloudfeed.h
2021-05-07 07:19:39 +02:00

24 lines
477 B
C++

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