summaryrefslogtreecommitdiffstats
path: root/lib/Plugins/Python.h
blob: 532ee8cd699d3132af808dd01709cd2dcc82cce1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef PYTHON_H_
#define PYTHON_H_

#include <string>
#include "Plugin.h"
#include "Analyzer.h"

class CAnalyzerPython : public CAnalyzer
{
    public:
        virtual std::string GetLocalUUID(const std::string& pDebugDumpDir);
        virtual std::string GetGlobalUUID(const std::string& pDebugDumpDir);
        virtual void CreateReport(const std::string& pDebugDumpDir, int force) {}
        virtual void Init();
        virtual void DeInit();
};

#endif /* PYTHON_H_ */