19 lines
564 B
C++
19 lines
564 B
C++
// For license of this file, see <project-root-folder>/LICENSE.md.
|
|
|
|
#ifndef INOREADERENTRYPOINT_H
|
|
#define INOREADERENTRYPOINT_H
|
|
|
|
#include "services/abstract/serviceentrypoint.h"
|
|
|
|
class InoreaderEntryPoint : public ServiceEntryPoint {
|
|
public:
|
|
virtual ServiceRoot* createNewRoot() const;
|
|
virtual QList<ServiceRoot*> initializeSubtree() const;
|
|
virtual QString name() const;
|
|
virtual QString code() const;
|
|
virtual QString description() const;
|
|
virtual QString author() const;
|
|
virtual QIcon icon() const;
|
|
};
|
|
|
|
#endif // INOREADERENTRYPOINT_H
|