pykd/pykd/dbgpath.h
SND\kernelnet_cp f33a030f84 [0.1.x] added : !py implementation
git-svn-id: https://pykd.svn.codeplex.com/svn@70240 9b283d60-5439-405e-af05-b73fd8c4d996
2017-11-08 17:06:26 +04:00

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;
};
///////////////////////////////////////////////////////////////////////////////