mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-20 11:43:23 +08:00
19 lines
432 B
C++
19 lines
432 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
class DbgPythonPath
|
|
{
|
|
public:
|
|
DbgPythonPath();
|
|
|
|
bool getFullFileName(const std::string &fileName, std::string &fullFileName) const;
|
|
|
|
private:
|
|
std::vector<std::string> m_extactedPathList;
|
|
};
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|