diff options
| author | Jonathan Feenstra <26406078+JonathanFeenstra@users.noreply.github.com> | 2024-09-28 19:58:29 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-28 19:58:29 +0200 |
| commit | 7ed06a77c1119b6ee7cd6d32893339465197f420 (patch) | |
| tree | e1c108d4fe88e0047330538854ff6f226659365e /src/pluginlist.h | |
| parent | 9c130cbf2fc7225fb2916e46419af50671772aa0 (diff) | |
Add author and description methods to IPluginList (#2118)
Diffstat (limited to 'src/pluginlist.h')
| -rw-r--r-- | src/pluginlist.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pluginlist.h b/src/pluginlist.h index 89c05141..0588b4d7 100644 --- a/src/pluginlist.h +++ b/src/pluginlist.h @@ -244,6 +244,9 @@ public: bool isLightFlagged(const QString& name) const; bool hasNoRecords(const QString& name) const; + QString author(const QString& name) const; + QString description(const QString& name) const; + boost::signals2::connection onRefreshed(const std::function<void()>& callback); boost::signals2::connection onPluginMoved(const std::function<void(const QString&, int, int)>& func); |
