Changeset 694 in dev


Ignore:
Timestamp:
Jul 19, 2008, 5:49:44 PM (16 years ago)
Author:
dai_9181
Message:

FileSystemクラスを追加。

Location:
trunk/ab5.0/jenga
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/jenga/include/jenga.h

    r680 r694  
    1010#include "common/Exception.h"
    1111#include "common/File.h"
     12#include "common/FileSystem.h"
    1213#include "common/Hashmap.h"
    1314#include "common/Path.h"
  • trunk/ab5.0/jenga/projects/jenga/jenga.vcproj

    r625 r694  
    295295            <File
    296296                RelativePath="..\..\src\common\Exception.cpp"
     297                >
     298            </File>
     299            <File
     300                RelativePath="..\..\src\common\FileSystem.cpp"
    297301                >
    298302            </File>
     
    384388            </File>
    385389            <File
     390                RelativePath="..\..\include\common\FileSystem.h"
     391                >
     392            </File>
     393            <File
    386394                RelativePath="..\..\include\common\Hashmap.h"
    387395                >
  • trunk/ab5.0/jenga/src/common/Directory.cpp

    r680 r694  
    141141void Directory::SearchFiles( Jenga::Common::Strings &resultOfFullPath, const std::string &findStr, bool isRecuresive ) const
    142142{
    143     Jenga::Common::Strings result;
    144 
    145143    WIN32_FIND_DATA wfd;
    146144    HANDLE hFind=FindFirstFile( ( this->path + "\\" + findStr ).c_str(), &wfd );
Note: See TracChangeset for help on using the changeset viewer.