Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8226 in orxonox.OLD for branches/gui/src/lib/util/directory.cc


Ignore:
Timestamp:
Jun 8, 2006, 10:49:15 AM (19 years ago)
Author:
bensch
Message:

gui: doxy-tags

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gui/src/lib/util/directory.cc

    r8225 r8226  
    4848#include <iostream>
    4949
     50/**
     51 * @brief Constructs a Directory handler.
     52 * @param directoryName the name of the Directory to access.
     53 */
    5054Directory::Directory(const std::string& directoryName)
    5155    : File(directoryName)
     
    5458}
    5559
     60/**
     61 * @brief destructs the Directory.
     62 */
    5663Directory::~Directory()
    5764{
     
    6067
    6168
     69/**
     70 * @brief openes the Directory
     71 * @returns true on success, false on error. (does not exist, no rights -> test with functions of File)
     72 *
     73 * Fills the List of Files, and sets the Directory to open state
     74 */
    6275bool Directory::open()
    6376{
     
    117130}
    118131
     132/**
     133 * @brief closes the directory
     134 * @returns true.
     135 *
     136 * Clears the List of Files in the Directory.
     137 */
    119138bool Directory::close()
    120139{
     
    125144
    126145
    127 
     146/**
     147 * @brief creates the directory
     148 * @returns true on success, false on error
     149 */
    128150bool Directory::create()
    129151{
Note: See TracChangeset for help on using the changeset viewer.