#include <QtCore/qsettings.h>
#ifndef QSETTINGS_H
#ifndef QT_NO_SETTINGS
class QSettings: public QObject{
   /* Some contents are skipped to improve readability */
   public: enum Format{
      NativeFormat = 0,
      IniFormat = 1,
      InvalidFormat = 16,
      CustomFormat1 = 17,
      CustomFormat2 = 18,
      CustomFormat3 = 19,
      CustomFormat4 = 20,
      CustomFormat5 = 21,
      CustomFormat6 = 22,
      CustomFormat7 = 23,
      CustomFormat8 = 24,
      CustomFormat9 = 25,
      CustomFormat10 = 26,
      CustomFormat11 = 27,
      CustomFormat12 = 28,
      CustomFormat13 = 29,
      CustomFormat14 = 30,
      CustomFormat15 = 31,
      CustomFormat16 = 32,
   };
   /* ... */
};
#endif // QT_NO_SETTINGS
#endif // QSETTINGS_H