#include <QtCore/qchar.h>
#ifndef QCHAR_H
class QChar{
   /* Some contents are skipped to improve readability */
   public: enum SpecialCharacter{
      Null = 0,
      Nbsp = 160,
      ReplacementCharacter = 65533,
      ObjectReplacementCharacter = 65532,
      ByteOrderMark = 65279,
      ByteOrderSwapped = 65534,
      ParagraphSeparator = 8233,
      LineSeparator = 8232,
   };
   /* ... */
};
#endif // QCHAR_H