#include <QtCore/qtextstream.h> #ifndef QTEXTSTREAM_H class QTextStream{ /* Some contents are skipped to improve readability */ public: enum RealNumberNotation{ SmartNotation = 0, FixedNotation = 1, ScientificNotation = 2, }; /* ... */ }; #endif // QTEXTSTREAM_H