mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-05-02 22:23:23 +08:00

[0.1.x] refactored: DbgPythonPath class [0.1.x] added: FileExists function [0.0.x] refactored: DbgPythonPath class [0.0.x] added: FileExists function git-svn-id: https://pykd.svn.codeplex.com/svn@72409 9b283d60-5439-405e-af05-b73fd8c4d996
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;
|
|
};
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|