blob: b54de8dc6f4daec1478c42abfb6666264f6585d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#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();
virtual std::string CreateHash(const std::string& pInput);
};
#endif /* PYTHON_H_ */
|