tesseract  4.00.00dev
unichar.h File Reference
#include <memory.h>
#include <string.h>

Go to the source code of this file.

Classes

class  GenericVector< T >
 
class  UNICHAR
 
class  UNICHAR::const_iterator
 

Macros

#define UNICHAR_LEN   30
 

Typedefs

typedef int UNICHAR_ID
 

Enumerations

enum  StrongScriptDirection { DIR_NEUTRAL = 0, DIR_LEFT_TO_RIGHT = 1, DIR_RIGHT_TO_LEFT = 2, DIR_MIX = 3 }
 

Macro Definition Documentation

◆ UNICHAR_LEN

#define UNICHAR_LEN   30

Definition at line 30 of file unichar.h.

Typedef Documentation

◆ UNICHAR_ID

typedef int UNICHAR_ID

Definition at line 33 of file unichar.h.

Enumeration Type Documentation

◆ StrongScriptDirection

Enumerator
DIR_NEUTRAL 
DIR_LEFT_TO_RIGHT 
DIR_RIGHT_TO_LEFT 
DIR_MIX 

Definition at line 40 of file unichar.h.

40  {
41  DIR_NEUTRAL = 0, // Text contains only neutral characters.
42  DIR_LEFT_TO_RIGHT = 1, // Text contains no Right-to-Left characters.
43  DIR_RIGHT_TO_LEFT = 2, // Text contains no Left-to-Right characters.
44  DIR_MIX = 3, // Text contains a mixture of left-to-right
45  // and right-to-left characters.
46 };