From 7f5fdcf6e63820ed82a936a85a0728e46bd04266 Mon Sep 17 00:00:00 2001 From: "SND\\kernelnet_cp" Date: Fri, 7 Oct 2011 06:23:14 +0000 Subject: [PATCH] [0.0 -> 0.1 ] integrate dbgpath.h git-svn-id: https://pykd.svn.codeplex.com/svn@70238 9b283d60-5439-405e-af05-b73fd8c4d996 --- pykd/dbgpath.h | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pykd/dbgpath.h 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