#include <QtCore/qlocale.h>
#ifndef QLOCALE_H
#ifndef QT_NO_SYSTEMLOCALE
class QSystemLocale{
   /* Some contents are skipped to improve readability */
   public: enum QueryType{
      LanguageId = 0,
      CountryId = 1,
      DecimalPoint = 2,
      GroupSeparator = 3,
      ZeroDigit = 4,
      NegativeSign = 5,
      DateFormatLong = 6,
      DateFormatShort = 7,
      TimeFormatLong = 8,
      TimeFormatShort = 9,
      DayNameLong = 10,
      DayNameShort = 11,
      MonthNameLong = 12,
      MonthNameShort = 13,
      DateToStringLong = 14,
      DateToStringShort = 15,
      TimeToStringLong = 16,
      TimeToStringShort = 17,
   };
   /* ... */
};
#endif
#endif // QLOCALE_H