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)
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 };
|