summaryrefslogtreecommitdiff
path: root/pluginmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'pluginmanager.cpp')
-rw-r--r--pluginmanager.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/pluginmanager.cpp b/pluginmanager.cpp
index 8f57f2f8..049555be 100644
--- a/pluginmanager.cpp
+++ b/pluginmanager.cpp
@@ -20,6 +20,11 @@ string RepoPlugin::GetPath() const
RETURN_STRING(BNPluginGetPath(m_object));
}
+string RepoPlugin::GetDependencies() const
+{
+ RETURN_STRING(BNPluginGetDependencies(m_object));
+}
+
bool RepoPlugin::IsInstalled() const
{
return BNPluginIsInstalled(m_object);
@@ -214,6 +219,12 @@ bool RepoPlugin::Install()
}
+bool RepoPlugin::InstallDependencies()
+{
+ return BNPluginInstallDependencies(m_object);
+}
+
+
bool RepoPlugin::Enable(bool force)
{
return BNPluginEnable(m_object, force);