Changeset 480 in dev for trunk/ab5.0/jenga
- Timestamp:
- Apr 6, 2008, 10:03:28 PM (17 years ago)
- Location:
- trunk/ab5.0
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0
- Property svn:externals
-
old new 4 4 abdev/build/debug/system http://dev.activebasic.com/svnroot/ablib/trunk/ab5.0/system 5 5 abdev/build/debug/theme http://dev.activebasic.com/svnroot/ablib/trunk/ab5.0/theme 6 abdev/build/release/ablib http://dev.activebasic.com/svnroot/ablib/trunk/ab5.0/ablib 7 abdev/build/release/runtime http://dev.activebasic.com/svnroot/ablib/trunk/ab5.0/runtime 8 abdev/build/release/system http://dev.activebasic.com/svnroot/ablib/trunk/ab5.0/system 9 abdev/build/release/theme http://dev.activebasic.com/svnroot/ablib/trunk/ab5.0/theme 6 abdev/build/release http://dev.activebasic.com/svnroot/ablib/trunk/ab5.0
-
- Property svn:externals
-
trunk/ab5.0/jenga/include/common/Environment.h
r477 r480 17 17 { 18 18 public: 19 static const std::string GetCurrentDir() 20 { 21 char temp[MAX_PATH]; 22 ::GetCurrentDirectory( MAX_PATH, temp ); 23 return temp; 24 } 25 19 26 static const std::string &GetAppDir() 20 27 { -
trunk/ab5.0/jenga/include/common/Path.h
r467 r480 64 64 65 65 static std::string MakeFullPath( const std::string &relativePath, const std::string &baseDirPath ); 66 static std::string MakeFullPathByCurrentDirectory( const std::string &relativePath ); 66 67 }; 67 68 -
trunk/ab5.0/jenga/projects/jenga/jenga.vcproj
r474 r480 16 16 <Configurations> 17 17 <Configuration 18 Name="Debug( amd64)|Win32"18 Name="Debug(x64)|Win32" 19 19 OutputDirectory="$(SolutionDir)$(ConfigurationName)" 20 20 IntermediateDirectory="$(ConfigurationName)" … … 80 80 </Configuration> 81 81 <Configuration 82 Name="Release( amd64)|Win32"82 Name="Release(x64)|Win32" 83 83 OutputDirectory="$(SolutionDir)$(ConfigurationName)" 84 84 IntermediateDirectory="$(ConfigurationName)" -
trunk/ab5.0/jenga/src/common/Path.cpp
r477 r480 1 1 #include <boost/foreach.hpp> 2 #include <jenga/include/common/Environment.h> 2 3 #include <jenga/include/common/Path.h> 3 4 … … 77 78 return resultPath; 78 79 } 80 std::string Jenga::Common::Path::MakeFullPathByCurrentDirectory( const std::string &relativePath ) 81 { 82 return MakeFullPath( relativePath, Jenga::Common::Environment::GetCurrentDir() ); 83 }
Note:
See TracChangeset
for help on using the changeset viewer.