#include <QtCore/qlocale.h> #ifndef QLOCALE_H class QLocale{ /* Some contents are skipped to improve readability */ public: enum NumberOption{ OmitGroupSeparator = 1, RejectGroupSeparator = 2, }; /* ... */ }; #endif // QLOCALE_H