|
Tesseract
3.02
|
#include <dawg.h>
Public Member Functions | |
| DawgInfo () | |
| DawgInfo (int i, EDGE_REF r) | |
| bool | operator== (const DawgInfo &other) |
Public Attributes | |
| int | dawg_index |
| EDGE_REF | ref |
DawgInfo struct and DawgInfoVector class are used for storing information about the current Dawg search state.
| tesseract::DawgInfo::DawgInfo | ( | ) | [inline] |
Definition at line 306 of file dawg.h.
: dawg_index(-1), ref(NO_EDGE) {}
| tesseract::DawgInfo::DawgInfo | ( | int | i, |
| EDGE_REF | r | ||
| ) | [inline] |
Definition at line 307 of file dawg.h.
: dawg_index(i), ref(r) {}
| bool tesseract::DawgInfo::operator== | ( | const DawgInfo & | other | ) | [inline] |
Definition at line 308 of file dawg.h.
{
return (this->dawg_index == other.dawg_index && this->ref == other.ref);
}