Tesseract  3.02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
tesseract::TESS_CHAR Struct Reference
Inheritance diagram for tesseract::TESS_CHAR:
ELIST_LINK

Public Member Functions

 TESS_CHAR (float _cost, const char *repr, int len=-1)
 
 TESS_CHAR ()
 
 ~TESS_CHAR ()
 
- Public Member Functions inherited from ELIST_LINK
 ELIST_LINK ()
 
 ELIST_LINK (const ELIST_LINK &)
 
void operator= (const ELIST_LINK &)
 

Public Attributes

char * unicode_repr
 
int length
 
float cost
 
TBOX box
 

Detailed Description

Definition at line 2002 of file baseapi.cpp.

Constructor & Destructor Documentation

tesseract::TESS_CHAR::TESS_CHAR ( float  _cost,
const char *  repr,
int  len = -1 
)
inline

Definition at line 2008 of file baseapi.cpp.

2008  : cost(_cost) {
2009  length = (len == -1 ? strlen(repr) : len);
2010  unicode_repr = new char[length + 1];
2011  strncpy(unicode_repr, repr, length);
2012  }
tesseract::TESS_CHAR::TESS_CHAR ( )
inline

Definition at line 2014 of file baseapi.cpp.

2014  { // Satisfies ELISTIZE.
2015  }
tesseract::TESS_CHAR::~TESS_CHAR ( )
inline

Definition at line 2016 of file baseapi.cpp.

2016  {
2017  delete [] unicode_repr;
2018  }

Member Data Documentation

TBOX tesseract::TESS_CHAR::box

Definition at line 2006 of file baseapi.cpp.

float tesseract::TESS_CHAR::cost

Definition at line 2005 of file baseapi.cpp.

int tesseract::TESS_CHAR::length

Definition at line 2004 of file baseapi.cpp.

char* tesseract::TESS_CHAR::unicode_repr

Definition at line 2003 of file baseapi.cpp.


The documentation for this struct was generated from the following file: