#include <QtNetwork/qurlinfo.h>
#ifndef QURLINFO_H
#ifndef QT_NO_URLINFO
class QUrlInfo{
   /* Some contents are skipped to improve readability */
   public: enum PermissionSpec{
      ReadOwner = 256,
      WriteOwner = 128,
      ExeOwner = 64,
      ReadGroup = 32,
      WriteGroup = 16,
      ExeGroup = 8,
      ReadOther = 4,
      WriteOther = 2,
      ExeOther = 1,
   };
   /* ... */
};
#endif // QT_NO_URLINFO
#endif // QURLINFO_H