summaryrefslogtreecommitdiffstats
path: root/src/Daemon/PluginManager.h
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-01-07 16:23:28 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2010-01-07 16:23:28 +0100
commit6e68609e998f48f50a7eec6cd0290ca66808731b (patch)
tree2cdae5ab2b9c53812b7f317485a3ec0faddbcba5 /src/Daemon/PluginManager.h
parent4bf6f7e8ad9778fc3b551da6d6d7170c61dc14a2 (diff)
downloadabrt-6e68609e998f48f50a7eec6cd0290ca66808731b.tar.gz
abrt-6e68609e998f48f50a7eec6cd0290ca66808731b.tar.xz
abrt-6e68609e998f48f50a7eec6cd0290ca66808731b.zip
PluginManager: preparatory cleanup
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src/Daemon/PluginManager.h')
-rw-r--r--src/Daemon/PluginManager.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/Daemon/PluginManager.h b/src/Daemon/PluginManager.h
index 301d091..2d649c5 100644
--- a/src/Daemon/PluginManager.h
+++ b/src/Daemon/PluginManager.h
@@ -39,17 +39,17 @@
class CPluginManager
{
private:
- typedef std::map<std::string, CABRTPlugin*> map_abrt_plugins_t;
- typedef std::map<std::string, CPlugin*> map_plugins_t;
+ typedef std::map<std::string, CLoadedModule*> map_loaded_module_t;
+ typedef std::map<std::string, CPlugin*> map_plugin_t;
/**
* Loaded plugins. A key is a plugin name.
*/
- map_abrt_plugins_t m_mapABRTPlugins;
+ map_loaded_module_t m_mapLoadedModules;
/**
* Registered plugins. A key is a plugin name.
*/
- map_plugins_t m_mapPlugins;
+ map_plugin_t m_mapPlugins;
public:
/**
@@ -135,10 +135,10 @@ class CPluginManager
*/
plugin_type_t GetPluginType(const char *pName);
/**
- * A method, which gets all plugins info (event those plugins which are
- * disabled). It can be send via DBus to GUI and displayed to an user.
- * Then a user can fill all needed informations like URLs etc.
- * @return A vector of maps <key, vaule>
+ * A method, which gets all plugins info (even those plugins which are
+ * disabled). It can be sent via DBus to GUI and displayed to an user.
+ * Then user can fill all needed informations like URLs etc.
+ * @return A vector of maps <key, value>
*/
vector_map_string_t GetPluginsInfo();
/**