summaryrefslogtreecommitdiffstats
path: root/lib/Plugins/Python.h
blob: 3c23e08b70abdfa1b2253ef0376eece069b3c413 (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
#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_ */