Index: trunk/ab5.0/jenga/include/common/Environment.h
===================================================================
--- trunk/ab5.0/jenga/include/common/Environment.h	(revision 477)
+++ trunk/ab5.0/jenga/include/common/Environment.h	(revision 480)
@@ -17,4 +17,11 @@
 {
 public:
+	static const std::string GetCurrentDir()
+	{
+		char temp[MAX_PATH];
+		::GetCurrentDirectory( MAX_PATH, temp );
+		return temp;
+	}
+
 	static const std::string &GetAppDir()
 	{
Index: trunk/ab5.0/jenga/include/common/Path.h
===================================================================
--- trunk/ab5.0/jenga/include/common/Path.h	(revision 477)
+++ trunk/ab5.0/jenga/include/common/Path.h	(revision 480)
@@ -64,4 +64,5 @@
 
 	static std::string MakeFullPath( const std::string &relativePath, const std::string &baseDirPath );
+	static std::string MakeFullPathByCurrentDirectory( const std::string &relativePath );
 };
 
