From b314b5e7fc624eb35406bdc550c1387fb43fff0a Mon Sep 17 00:00:00 2001 From: Zdenek Prikryl Date: Tue, 21 Apr 2009 09:37:03 +0200 Subject: Initial Python plugin --- lib/Plugins/Python.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 lib/Plugins/Python.h (limited to 'lib/Plugins/Python.h') diff --git a/lib/Plugins/Python.h b/lib/Plugins/Python.h new file mode 100644 index 00000000..205d2321 --- /dev/null +++ b/lib/Plugins/Python.h @@ -0,0 +1,29 @@ +#ifndef PYTHON_H_ +#define PYTHON_H_ + +#include +#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_ */ -- cgit