summaryrefslogtreecommitdiffstats
path: root/lib/Plugins/Python.h
blob: 57eefbf9ff9c16d27abe60005e6e1fcd50325b74 (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) {}
        virtual void Init();
        virtual void DeInit();
        virtual std::string CreateHash(const std::string& pInput);
};

#endif /* PYTHON_H_ */