mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-21 04:13:22 +08:00
31 lines
552 B
C++
31 lines
552 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
class DbgPythonPath
|
|
{
|
|
public:
|
|
|
|
DbgPythonPath();
|
|
|
|
std::string
|
|
getStr() const;
|
|
|
|
bool
|
|
findPath(
|
|
const std::string &fileName,
|
|
std::string &fullFileName,
|
|
std::string &filePath ) const;
|
|
|
|
|
|
private:
|
|
|
|
std::vector< std::string > m_pathList;
|
|
|
|
};
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|