pykd/pykd/dbgpath.h
SND\kernelnet_cp 17c51fac01 [!] bug fixed: issue #7717 ( !py command failed to find standart modules )
[!] bug fixed: issue #7718 ( sys.argv[0] does not contain script name )

git-svn-id: https://pykd.svn.codeplex.com/svn@57921 9b283d60-5439-405e-af05-b73fd8c4d996
2010-11-22 08:47:24 +00:00

33 lines
596 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;
};
//extern DbgPythonPath& dbgPythonPath;
///////////////////////////////////////////////////////////////////////////////