~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/cached_directory.h

  • Committer: David Shrewsbury
  • Date: 2009-08-04 14:10:57 UTC
  • mto: (1093.1.45 captain)
  • mto: This revision was merged to the branch mainline in revision 1112.
  • Revision ID: shrewsbury.dave@gmail.com-20090804141057-2b0nabo29vufjpsy
Corrected comments

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
 * A utility class to handle processing the entries/files within a directory.
40
40
 *
41
41
 * This class will allow the user to either get a list of the entry names 
42
 
 * within a given directory, or, alternatively, apply a function to each
43
 
 * entry as it is read from the directory.
 
42
 * within a given directory.
44
43
 */
45
44
class CachedDirectory
46
45
{
100
99
  }
101
100
 
102
101
  /**
103
 
   * Return a list of directory entries populated in the call to open().
104
 
   *
105
 
   * @note
106
 
   *   You must call the open() method before getList() if you want the
107
 
   *   list contain any elements.
 
102
   * Return the list of entries read from the directory
108
103
   *
109
104
   * @returns
110
105
   *   A vector of strings containing the directory entry names.