summaryrefslogtreecommitdiffstats
path: root/lib/Plugins/Python.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Plugins/Python.h')
-rw-r--r--lib/Plugins/Python.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/Plugins/Python.h b/lib/Plugins/Python.h
new file mode 100644
index 0000000..205d232
--- /dev/null
+++ b/lib/Plugins/Python.h
@@ -0,0 +1,29 @@
+#ifndef PYTHON_H_
+#define PYTHON_H_
+
+#include <string>
+#include "Plugin.h"
+#include "Analyzer.h"
+
+class CAnalyzerPython : public CAnalyzer
+{
+ public:
+ virtual ~CAnalyzerPython() {}
+ virtual std::string GetLocalUUID(const std::string& pDebugDumpDir);
+ virtual std::string GetGlobalUUID(const std::string& pDebugDumpDir);
+ virtual void CreateReport(const std::string& pDebugDumpDir) {}
+ virtual void Init();
+ virtual void DeInit();
+};
+
+
+PLUGIN_INFO(ANALYZER,
+ CAnalyzerPython,
+ "Python",
+ "0.0.1",
+ "Simple Python analyzer plugin.",
+ "zprikryl@redhat.com",
+ "https://fedorahosted.org/abrt/wiki");
+
+
+#endif /* PYTHON_H_ */