summaryrefslogtreecommitdiffstats
path: root/lib/CommLayer
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-08-27 15:57:17 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-08-27 15:57:17 +0200
commitfc4721139b2a7fb890f50105ea169ca4fa6544ac (patch)
tree987a9941ed8437fd49409f542407d505df77d425 /lib/CommLayer
parent27fa2ecd754cc383b5aecbc11feb6b59323f6397 (diff)
downloadabrt-fc4721139b2a7fb890f50105ea169ca4fa6544ac.tar.gz
abrt-fc4721139b2a7fb890f50105ea169ca4fa6544ac.tar.xz
abrt-fc4721139b2a7fb890f50105ea169ca4fa6544ac.zip
consolidate container typedefs in one file (we had a few dupes)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'lib/CommLayer')
-rw-r--r--lib/CommLayer/DBusCommon.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/CommLayer/DBusCommon.h b/lib/CommLayer/DBusCommon.h
index 0addf08..b3e3af2 100644
--- a/lib/CommLayer/DBusCommon.h
+++ b/lib/CommLayer/DBusCommon.h
@@ -17,12 +17,13 @@
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
+#ifndef DBUSCOMMON_H_
+#define DBUSCOMMON_H_
+
+#include "CrashTypes.h"
+
#define CC_DBUS_NAME "com.redhat.abrt"
#define CC_DBUS_PATH "/com/redhat/abrt"
#define CC_DBUS_IFACE "com.redhat.abrt"
-#include "CrashTypes.h"
-typedef std::map<std::string, std::string> map_string_string_t;
-typedef std::vector<map_string_string_t> vector_map_string_string_t;
-typedef std::map<std::string, std::string> map_plugin_settings_t;
-typedef std::map<std::string, vector_strings_t> report_status_t;
+#endif