Changeset 23
- Timestamp:
- 11/03/07 18:03:49 (10 months ago)
- Files:
-
- vowfs/db.h (added)
- vowfs/dir.hxx (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
vowfs/dir.hxx
r22 r23 20 20 21 21 /* 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. 24 25 */ 25 list<File> dir_list; 26 list<File> file_list; 27 list<Dir> dir_list; 26 28 27 29 public: … … 55 57 56 58 // 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(); 58 63 }; 59 64 };
