Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 3372

Show
Ignore:
Timestamp:
03/16/08 19:29:10 (9 months ago)
Author:
lmartin92
Message:

Completed the third class and now moving on to the file components of FtpFolder?.d

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/lmartin/ftp/tango/io/vfs/FtpFolder.d

    r3370 r3372  
    249249 
    250250    VfsFiles catalog(char[] pattern) { 
    251         return null; 
     251        return new FtpFiles(toString_, name_, username_, password_, port_, 
     252            pattern); 
    252253    } 
    253254 
    254255    VfsFiles catalog(VfsFilter filter = null) { 
    255         return null; 
     256        return new FtpFiles(toString_, name_, username_, password_, port_, 
     257            filter); 
    256258    } 
    257259}