diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2015-10-09 19:26:05 -0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-10-30 10:36:51 -0700 |
commit | e62d439bda65801ae6f3d2e73bec1a706a46ca90 (patch) | |
tree | 90d9f895638df66dc528d8980ec97cb88f5fda15 /subsurface-core/pluginmanager.cpp | |
parent | 66d3e99ff2bea172d991ad59db19586ce7bcbed6 (diff) | |
download | subsurface-e62d439bda65801ae6f3d2e73bec1a706a46ca90.tar.gz |
Start the Plugin Manager
This bit of code will try to load all plugins avaliable.
Now I need to port a Facebook plugin for this new system,
then I'll delete the old preferences widget.
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'subsurface-core/pluginmanager.cpp')
-rw-r--r-- | subsurface-core/pluginmanager.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/subsurface-core/pluginmanager.cpp b/subsurface-core/pluginmanager.cpp index 41d226f61..290f43df0 100644 --- a/subsurface-core/pluginmanager.cpp +++ b/subsurface-core/pluginmanager.cpp @@ -11,6 +11,9 @@ PluginManager& PluginManager::instance() { return self; } +PluginManager::PluginManager() { +} + void PluginManager::loadPlugins() { QDir pluginsDir(qApp->applicationDirPath()); |