summaryrefslogtreecommitdiffstats
path: root/lib/Plugins/Python.h
blob: 62a43222b939e3ba4ab3b3493f3299e8033e7116 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#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();
        virtual std::string CreateHash(const std::string& pInput);
};


PLUGIN_INFO(ANALYZER,
            CAnalyzerPython,
            "Python",
            "0.0.1",
            "Simple Python analyzer plugin.",
            "zprikryl@redhat.com, jmoskovc@redhat.com",
            "https://fedorahosted.org/abrt/wiki",
            "");


#endif /* PYTHON_H_ */