Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8332 in orxonox.OLD for trunk/src/lib/util/filesys/directory.cc


Ignore:
Timestamp:
Jun 12, 2006, 10:51:14 PM (19 years ago)
Author:
bensch
Message:

trunk: some more functionality

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/util/filesys/directory.cc

    r8330 r8332  
    5757  this->_opened = false;
    5858}
     59
     60/**
     61 * @brief construct a Copy of directory.
     62 * @param directory the Directory to copy.
     63 */
     64Directory::Directory(const Directory& directory)
     65  : File(directory)
     66{
     67  this->_opened = directory._opened;
     68  this->_fileNames = directory._fileNames;
     69}
     70
    5971
    6072/**
Note: See TracChangeset for help on using the changeset viewer.