diff options
| author | Zdenek Prikryl <zprikryl@redhat.com> | 2009-02-12 10:09:21 +0100 |
|---|---|---|
| committer | Zdenek Prikryl <zprikryl@redhat.com> | 2009-02-12 10:09:21 +0100 |
| commit | ec264c8514a838ceb9d78f4fc6f41ebe7a8419e0 (patch) | |
| tree | cc2fd00f204dee00a81c082393982994a263b73c /lib/MiddleWare/MiddleWare.h | |
| parent | fa69a86d9ffffd444ee8f64bfc794ea97e1a1453 (diff) | |
| download | abrt-ec264c8514a838ceb9d78f4fc6f41ebe7a8419e0.tar.gz abrt-ec264c8514a838ceb9d78f4fc6f41ebe7a8419e0.tar.xz abrt-ec264c8514a838ceb9d78f4fc6f41ebe7a8419e0.zip | |
compilation bug fix
Diffstat (limited to 'lib/MiddleWare/MiddleWare.h')
| -rw-r--r-- | lib/MiddleWare/MiddleWare.h | 40 |
1 files changed, 22 insertions, 18 deletions
diff --git a/lib/MiddleWare/MiddleWare.h b/lib/MiddleWare/MiddleWare.h index 526888e..71c85ef 100644 --- a/lib/MiddleWare/MiddleWare.h +++ b/lib/MiddleWare/MiddleWare.h @@ -31,6 +31,28 @@ class CMiddleWare { + public: + + typedef struct SCrashInfo + { + std::string m_sUUID; + std::string m_sUID; + std::string m_sCount; + std::string m_sExecutable; + std::string m_sPackage; + std::string m_sTime; + } crash_info_t; + + typedef struct SCrashReport + { + std::string m_sUUID; + std::string m_sUID; + std::string m_sPlugin2ReportersName; + CReporter::report_t m_Report; + } crash_report_t; + + typedef std::vector<crash_info_t> vector_crash_infos_t; + private: typedef set_settings_t set_blacklist_t; typedef set_settings_t set_enabled_plugins_t; @@ -62,24 +84,6 @@ class CMiddleWare public: - typedef struct SCrashInfo - { - std::string m_sUUID; - std::string m_sUID; - std::string m_sCount; - std::string m_sExecutable; - std::string m_sPackage; - std::string m_sTime; - } crash_info_t; - - typedef struct SCrashReport - { - std::string m_sPlugin2ReportersName; - CReporter::report_t m_Report; - } crash_report_t; - - typedef std::vector<crash_info_t> vector_crash_infos_t; - CMiddleWare(const std::string& pPlugisConfDir, const std::string& pPlugisLibDir, const std::string& pMiddleWareConfFile); |
