#include <QtCore/qfile.h>
#ifndef QFILE_H
class QFile: public QIODevice{
   /* Some contents are skipped to improve readability */
   public: enum Permission{
      ReadOwner = 16384,
      WriteOwner = 8192,
      ExeOwner = 4096,
      ReadUser = 1024,
      WriteUser = 512,
      ExeUser = 256,
      ReadGroup = 64,
      WriteGroup = 32,
      ExeGroup = 16,
      ReadOther = 4,
      WriteOther = 2,
      ExeOther = 1,
   };
   /* ... */
};
#endif // QFILE_H