diff --git a/pykd/dbgpath.h b/pykd/dbgpath.h new file mode 100644 index 0000000..3f790f1 --- /dev/null +++ b/pykd/dbgpath.h @@ -0,0 +1,32 @@ +#pragma once + +#include + +/////////////////////////////////////////////////////////////////////////////// + +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; + + +/////////////////////////////////////////////////////////////////////////////// \ No newline at end of file