diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 2001-05-11 18:45:20 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 2001-05-11 18:45:20 +0000 |
commit | 1fc803f5848357cb5bc5a4ce158780d2b1bc89e8 (patch) | |
tree | e918556e2aa003520fdad9331922b76581ffdafc /ace/Dirent.h | |
parent | 9f0637429cc177d8225ee2926178f5a1333004a1 (diff) | |
download | ATCD-1fc803f5848357cb5bc5a4ce158780d2b1bc89e8.tar.gz |
ChangeLogTag:Fri May 11 10:25:00 2001 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
Diffstat (limited to 'ace/Dirent.h')
-rw-r--r-- | ace/Dirent.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/Dirent.h b/ace/Dirent.h index d4d09845f44..cfe10038f69 100644 --- a/ace/Dirent.h +++ b/ace/Dirent.h @@ -46,7 +46,7 @@ public: /// Destructor calls <closedir>. ~ACE_Dirent (void); - /// Closes the directory stream and frees the DIR structure. + /// Closes the directory stream and frees the <ACE_DIR> structure. void close (void); // = Iterator methods. @@ -87,7 +87,7 @@ public: * directory stream. The new position reverts to the position * associated with the directory stream at the time the <telldir> * operation that provides loc was performed. Values returned by - * <telldir> are good only for the lifetime of the DIR pointer from + * <telldir> are good only for the lifetime of the <ACE_DIR> pointer from * which they are derived. If the directory is closed and then * reopened, the <telldir> value may be invalidated due to * undetected directory compaction. It is safe to use a previous @@ -106,7 +106,7 @@ public: private: /// Pointer to the directory stream. - DIR *dirp_; + ACE_DIR *dirp_; }; #if defined (__ACE_INLINE__) |