Index: trunk/ab5.0/jenga/include/common/Path.h
===================================================================
--- trunk/ab5.0/jenga/include/common/Path.h	(revision 625)
+++ trunk/ab5.0/jenga/include/common/Path.h	(revision 630)
@@ -55,4 +55,12 @@
 		return fullPath;
 	}
+	bool IsNetworkPath() const
+	{
+		if( fullPath.size() < 2 )
+		{
+			return false;
+		}
+		return ( ( fullPath[0] == '\\' ) && ( fullPath[1] == '\\' ) );
+	}
 
 	static std::string MakeFullPath( const std::string &relativePath, const std::string &baseDirPath );
