Changeset 8332 in orxonox.OLD for trunk/src/lib/util/filesys/directory.cc
- Timestamp:
- Jun 12, 2006, 10:51:14 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/util/filesys/directory.cc
r8330 r8332 57 57 this->_opened = false; 58 58 } 59 60 /** 61 * @brief construct a Copy of directory. 62 * @param directory the Directory to copy. 63 */ 64 Directory::Directory(const Directory& directory) 65 : File(directory) 66 { 67 this->_opened = directory._opened; 68 this->_fileNames = directory._fileNames; 69 } 70 59 71 60 72 /**
Note: See TracChangeset
for help on using the changeset viewer.