pykd/pykd/win/dbgpath.h
SND\kernelnet_cp b06fe5b226 [0.2.x] added : windbg commands
git-svn-id: https://pykd.svn.codeplex.com/svn@78848 9b283d60-5439-405e-af05-b73fd8c4d996
2017-11-08 17:42:50 +04:00

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