Combine bitwise to specify what to include in the enumeration. Not setting any of Readable, Writeable nor Executable causes all three to become set (fastest)

Enumerator:
Dirs  Include directories.
Files  Include files.
NoSymLinks  Don't include symbolic links.
All  Include everything except hidden (fastest).
TypeMask 
Readable  Include readable items.
Writeable  Include writeable items.
Writable 
Executable  Include executable items.
RWEMask 
Hidden  Include hidden items (fastest).
AccessMask 
DefaultFilter 

Definition at line 84 of file QDir.h.

00084                     {
00085         Dirs      =0x001,   
00086         Files     =0x002,   
00087         //Drives    =0x004, //!< Include drives
00088         NoSymLinks=0x008,   
00089         All       =0x007,   
00090         TypeMask  =0x00f,
00091 
00092         Readable  =0x010,   
00093         Writeable =0x020,   
00094         Writable  =0x020,
00095         Executable=0x040,   
00096         RWEMask   =0x070,
00097 
00098         //Modified  =0x080,
00099         Hidden    =0x100,   
00100         //System    =0x200,
00101         AccessMask=0x3f0,
00102 
00103         DefaultFilter=0xffffffff
00104     };


(C) 2002-2009 Niall Douglas. Some parts (C) to assorted authors.
Generated on Fri Nov 20 18:37:37 2009 for TnFOX by doxygen v1.4.7