Changeset 694 in dev
- Timestamp:
- Jul 19, 2008, 5:49:44 PM (16 years ago)
- Location:
- trunk/ab5.0/jenga
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/jenga/include/jenga.h
r680 r694 10 10 #include "common/Exception.h" 11 11 #include "common/File.h" 12 #include "common/FileSystem.h" 12 13 #include "common/Hashmap.h" 13 14 #include "common/Path.h" -
trunk/ab5.0/jenga/projects/jenga/jenga.vcproj
r625 r694 295 295 <File 296 296 RelativePath="..\..\src\common\Exception.cpp" 297 > 298 </File> 299 <File 300 RelativePath="..\..\src\common\FileSystem.cpp" 297 301 > 298 302 </File> … … 384 388 </File> 385 389 <File 390 RelativePath="..\..\include\common\FileSystem.h" 391 > 392 </File> 393 <File 386 394 RelativePath="..\..\include\common\Hashmap.h" 387 395 > -
trunk/ab5.0/jenga/src/common/Directory.cpp
r680 r694 141 141 void Directory::SearchFiles( Jenga::Common::Strings &resultOfFullPath, const std::string &findStr, bool isRecuresive ) const 142 142 { 143 Jenga::Common::Strings result;144 145 143 WIN32_FIND_DATA wfd; 146 144 HANDLE hFind=FindFirstFile( ( this->path + "\\" + findStr ).c_str(), &wfd );
Note:
See TracChangeset
for help on using the changeset viewer.