Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7625 in orxonox.OLD for branches/qt_gui/src/lib/util/file.h


Ignore:
Timestamp:
May 16, 2006, 9:17:10 AM (18 years ago)
Author:
bensch
Message:

qt_gui: Directory in File-style

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/qt_gui/src/lib/util/file.h

    r7622 r7625  
    1111typedef struct stat;
    1212
     13//! A Class to Handle Files.
    1314class File
    1415{
    1516  public:
     17  //! How the File should be opened.
    1618  typedef enum
    1719  {
    18     ReadOnly,
    19     WriteOnly,
    20     ReadWrite,
    21     Append,
     20    ReadOnly,      //!< ReadOnly mode
     21    WriteOnly,     //!< WriteOnly mode
     22    ReadWrite,     //!< Read and Write mode together
     23    Append,        //!< Append at the end.
    2224  } OpenMode;
    2325
Note: See TracChangeset for help on using the changeset viewer.