#include <QtCore/qchar.h>
#ifndef QCHAR_H
class QChar{
   /* Some contents are skipped to improve readability */
   public: enum Category{
      NoCategory = 0,
      Mark_NonSpacing = 1,
      Mark_SpacingCombining = 2,
      Mark_Enclosing = 3,
      Number_DecimalDigit = 4,
      Number_Letter = 5,
      Number_Other = 6,
      Separator_Space = 7,
      Separator_Line = 8,
      Separator_Paragraph = 9,
      Other_Control = 10,
      Other_Format = 11,
      Other_Surrogate = 12,
      Other_PrivateUse = 13,
      Other_NotAssigned = 14,
      Letter_Uppercase = 15,
      Letter_Lowercase = 16,
      Letter_Titlecase = 17,
      Letter_Modifier = 18,
      Letter_Other = 19,
      Punctuation_Connector = 20,
      Punctuation_Dash = 21,
      Punctuation_Open = 22,
      Punctuation_Close = 23,
      Punctuation_InitialQuote = 24,
      Punctuation_FinalQuote = 25,
      Punctuation_Other = 26,
      Symbol_Math = 27,
      Symbol_Currency = 28,
      Symbol_Modifier = 29,
      Symbol_Other = 30,
      Punctuation_Dask = 21,
   };
   /* ... */
};
#endif // QCHAR_H