[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:
SND\kernelnet_cp 2011-10-07 06:23:14 +00:00 committed by Mikhail I. Izmestev
parent a8ff8e9f84
commit 7f5fdcf6e6

32
pykd/dbgpath.h Normal file
View 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;
///////////////////////////////////////////////////////////////////////////////