rssguard/src/librssguard/services/tt-rss/ttrssserviceentrypoint.h
2019-06-10 09:54:18 +02:00

22 lines
564 B
C++

// For license of this file, see <project-root-folder>/LICENSE.md.
#ifndef TTRSSSERVICEENTRYPOINT_H
#define TTRSSSERVICEENTRYPOINT_H
#include "services/abstract/serviceentrypoint.h"
class TtRssServiceEntryPoint : public ServiceEntryPoint {
public:
bool isSingleInstanceService() const;
QString name() const;
QString description() const;
QString author() const;
QIcon icon() const;
QString code() const;
ServiceRoot* createNewRoot() const;
QList<ServiceRoot*> initializeSubtree() const;
};
#endif // TTRSSSERVICEENTRYPOINT_H