Changeset 23

Show
Ignore:
Timestamp:
11/03/07 18:03:49 (10 months ago)
Author:
nlawren2
Message:

Nothing to be said

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • vowfs/dir.hxx

    r22 r23  
    2020 
    2121                /* As with File's data, when the class is first constructed,  
    22                  * dir_list is empty.  However, when listContents is called, 
    23                  * a connection is made to the databse and dir_list is filled. 
     22                 * dir_list and file_list are empty.  However, when either  
     23                 * listContents is called, a connection is made to the databse 
     24                 * and dir_list, and file_list are filled. 
    2425                 */ 
    25                 list<File> dir_list; 
     26                list<File> file_list; 
     27                list<Dir>  dir_list; 
    2628 
    2729        public: 
     
    5557 
    5658                // TODO Query the databse, get the data, and return it 
    57                 list<File> listContents(); 
     59                list<File> listFileContents(); 
     60                 
     61                // TODO Query the databse, get the data, and return it 
     62                list<File> listDirContents(); 
    5863        }; 
    5964};