#include <QtCore/qchar.h>
#ifndef QCHAR_H
class QChar{
   /* Some contents are skipped to improve readability */
   public: enum CombiningClass{
      Combining_BelowLeftAttached = 200,
      Combining_BelowAttached = 202,
      Combining_BelowRightAttached = 204,
      Combining_LeftAttached = 208,
      Combining_RightAttached = 210,
      Combining_AboveLeftAttached = 212,
      Combining_AboveAttached = 214,
      Combining_AboveRightAttached = 216,
      Combining_BelowLeft = 218,
      Combining_Below = 220,
      Combining_BelowRight = 222,
      Combining_Left = 224,
      Combining_Right = 226,
      Combining_AboveLeft = 228,
      Combining_Above = 230,
      Combining_AboveRight = 232,
      Combining_DoubleBelow = 233,
      Combining_DoubleAbove = 234,
      Combining_IotaSubscript = 240,
   };
   /* ... */
};
#endif // QCHAR_H