summaryrefslogtreecommitdiffstats
path: root/lib/MiddleWare/MiddleWare.h
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2009-02-19 15:23:00 +0100
committerJiri Moskovcak <jmoskovc@redhat.com>2009-02-19 15:23:00 +0100
commit2f907417d37d83cefad7950397bd141c0586b1d5 (patch)
tree12d58967607cac7f300e7dcaee456fdfe9bd95a1 /lib/MiddleWare/MiddleWare.h
parentb472b75f70c7e9144fb29f9d142e9f52f4caab39 (diff)
parent0c899d52e5e42caf8c5c394ef6c142c08ac38858 (diff)
Merge branch 'master' of git://git.fedorahosted.org/git/crash-catcher
Conflicts: lib/DBus/Makefile.am lib/DBus/dbus-crash-catcher.conf lib/DBus/dbus-crashcatcher.conf src/Daemon/Makefile.am src/Daemon/dbus-crashcatcher.conf
Diffstat (limited to 'lib/MiddleWare/MiddleWare.h')
-rw-r--r--lib/MiddleWare/MiddleWare.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/MiddleWare/MiddleWare.h b/lib/MiddleWare/MiddleWare.h
index ed94f8b..d2cd8a2 100644
--- a/lib/MiddleWare/MiddleWare.h
+++ b/lib/MiddleWare/MiddleWare.h
@@ -27,6 +27,7 @@
#include "PluginManager.h"
#include "CrashTypes.h"
#include "MiddleWareTypes.h"
+#include "RPMInfo.h"
class CMiddleWare
{
@@ -34,14 +35,18 @@ class CMiddleWare
typedef set_strings_t set_blacklist_t;
typedef set_strings_t set_enabled_plugins_t;
typedef set_strings_t set_reporters_t;
+ typedef set_strings_t set_opengpg_keys_t;
typedef std::map<std::string, set_reporters_t> map_plugin2reporters_t;
CPluginManager* m_pPluginManager;
+ CRPMInfo m_RPMInfo;
set_blacklist_t m_setBlackList;
set_enabled_plugins_t m_setEnabledPlugins;
+ set_opengpg_keys_t m_setOpenGPGKeys;
std::string m_sDatabase;
map_plugin2reporters_t m_mapPlugin2Reporters;
+ bool m_bOpenGPGCheck;
std::string GetLocalUUIDLanguage(const std::string& pLanguage,
const std::string& pDebugDumpDir);