Ignore:
Timestamp:
01/15/15 22:43:01 (9 years ago)
Author:
Maciej Komosinski
Message:

Reorganizations and extensions of directory/file/filesystem IO classes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/virtfile/stringfile.cpp

    r286 r295  
    7171        return (chain != NULL) ? chain->Vfopen(path, mode) : NULL;
    7272}
    73 
    74 int StringFileSystem::Vfexists(const char* path)
    75 {
    76         return (chain != NULL) ? chain->Vfexists(path) : 0;
    77 }
    78 
    79 VirtDIR *StringFileSystem::Vopendir(const char* path)
    80 {
    81         return (chain != NULL) ? chain->Vopendir(path) : NULL;
    82 }
Note: See TracChangeset for help on using the changeset viewer.