#include <QtCore/qstring.h> #ifndef QSTRING_H class QString{ /* Some contents are skipped to improve readability */ public: enum SectionFlag{ SectionDefault = 0, SectionSkipEmpty = 1, SectionIncludeLeadingSep = 2, SectionIncludeTrailingSep = 4, SectionCaseInsensitiveSeps = 8, }; /* ... */ }; #endif // QSTRING_H