#include <scanrr.h>
Inheritance diagram for NodeListItemWithComplexity:
Public Member Functions | |
NodeListItemWithComplexity () | |
default constructor. Initialises pNode = NULL | |
NodeListItemWithComplexity (Node *WhichNode, BOOL val) | |
Constructor for NodeListItem which sets the pNode variable to WhichNode. | |
~NodeListItemWithComplexity () | |
Public Attributes | |
BOOL | wasClassifiedSimple |
INT32 | RunLength |
DocRect | BoundsRect |
Definition at line 120 of file scanrr.h.
|
default constructor. Initialises pNode = NULL
Definition at line 1224 of file scanrr.cpp. 01225 { 01226 pNode = NULL; 01227 wasClassifiedSimple = TRUE; 01228 RunLength = 0; 01229 }
|
|
Constructor for NodeListItem which sets the pNode variable to WhichNode.
Definition at line 1246 of file scanrr.cpp. 01247 { 01248 pNode = WhichNode; 01249 wasClassifiedSimple = val; 01250 RunLength = 0; 01251 }
|
|
Definition at line 126 of file scanrr.h.
|
|
|
|
|
|
|