~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/cached_directory.h

  • Committer: Brian Aker
  • Date: 2009-08-06 15:04:21 UTC
  • mfrom: (1093.1.52 captain)
  • Revision ID: brian@gaz-20090806150421-w8yrasl1m8exorxs
Merge Jay

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.