diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2021-07-15 03:39:25 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2021-07-29 10:42:06 -0400 |
| commit | 1a4a0f56dc17e68e5743fa3a550b46992ec461e1 (patch) | |
| tree | 33fbee198f54af7fa173a016b3ef71b3c7e49e28 /pluginmanager.cpp | |
| parent | c08ddcab02433cb5078b6cfea11bf972e47b3169 (diff) | |
support for repository plugins loaded from a subdirectory
Diffstat (limited to 'pluginmanager.cpp')
| -rw-r--r-- | pluginmanager.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pluginmanager.cpp b/pluginmanager.cpp index 1500c78e..d3108907 100644 --- a/pluginmanager.cpp +++ b/pluginmanager.cpp @@ -20,6 +20,11 @@ string RepoPlugin::GetPath() const RETURN_STRING(BNPluginGetPath(m_object)); } +string RepoPlugin::GetSubdir() const +{ + RETURN_STRING(BNPluginGetSubdir(m_object)); +} + string RepoPlugin::GetDependencies() const { RETURN_STRING(BNPluginGetDependencies(m_object)); |
