mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-29 11:53:23 +08:00
[0.0 -> 0.1 ] integrate dbgpath.h
git-svn-id: https://pykd.svn.codeplex.com/svn@70238 9b283d60-5439-405e-af05-b73fd8c4d996
This commit is contained in:
parent
a8ff8e9f84
commit
7f5fdcf6e6
32
pykd/dbgpath.h
Normal file
32
pykd/dbgpath.h
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
Loading…
Reference in New Issue
Block a user