// For license of this file, see /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 initializeSubtree() const; }; #endif // TTRSSSERVICEENTRYPOINT_H