blob: 82f52c05a277a14a3ff96912be84f9e1e26882e0 (
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 char *pDebugDumpDir);
virtual std::string GetGlobalUUID(const char *pDebugDumpDir);
virtual void CreateReport(const char *pDebugDumpDir, int force) {}
virtual void Init();
virtual void DeInit();
};
#endif /* PYTHON_H_ */
|