|
Tesseract
3.02
|
#include <pageres.h>
Public Member Functions | |
| BLOCK_RES () | |
| BLOCK_RES (BLOCK *the_block) | |
| ~BLOCK_RES () | |
Public Attributes | |
| BLOCK * | block |
| inT32 | char_count |
| inT32 | rej_count |
| inT16 | font_class |
| inT16 | row_count |
| float | x_height |
| BOOL8 | font_assigned |
| BOOL8 | bold |
| BOOL8 | italic |
| ROW_RES_LIST | row_res_list |
| BLOCK_RES::BLOCK_RES | ( | ) | [inline] |
| BLOCK_RES::BLOCK_RES | ( | BLOCK * | the_block | ) |
Definition at line 110 of file pageres.cpp.
{
ROW_IT row_it (the_block->row_list ());
ROW_RES_IT row_res_it(&row_res_list);
char_count = 0;
rej_count = 0;
font_class = -1; //not assigned
x_height = -1.0;
font_assigned = FALSE;
bold = FALSE;
italic = FALSE;
row_count = 0;
block = the_block;
for (row_it.mark_cycle_pt(); !row_it.cycled_list(); row_it.forward()) {
row_res_it.add_to_end(new ROW_RES(row_it.data()));
}
}
| ROW_RES_LIST BLOCK_RES::row_res_list |
| float BLOCK_RES::x_height |