#include <QtCore/qchar.h>
#ifndef QCHAR_H
class QChar{
   /* Some contents are skipped to improve readability */
   public: enum Direction{
      DirL = 0,
      DirR = 1,
      DirEN = 2,
      DirES = 3,
      DirET = 4,
      DirAN = 5,
      DirCS = 6,
      DirB = 7,
      DirS = 8,
      DirWS = 9,
      DirON = 10,
      DirLRE = 11,
      DirLRO = 12,
      DirAL = 13,
      DirRLE = 14,
      DirRLO = 15,
      DirPDF = 16,
      DirNSM = 17,
      DirBN = 18,
   };
   /* ... */
};
#endif // QCHAR_H