#include <region.h>
Public Member Functions | |
Region () | |
Default Constructor for Region Class. Creats a Null region. | |
Region (DocRect RectRegion) | |
Creates a Region from the specified rectangle. | |
BOOL | MergeRegion (Region *RegionToMerge) |
Merges one region with another. | |
Private Attributes | |
DocRect | CurrentRegion |
Definition at line 120 of file region.h.
|
Default Constructor for Region Class. Creats a Null region.
Definition at line 127 of file region.cpp. 00128 { 00129 CurrentRegion.lox = 0; 00130 CurrentRegion.loy = 0; 00131 CurrentRegion.hix = 0; 00132 CurrentRegion.hiy = 0; 00133 }
|
|
Creates a Region from the specified rectangle.
Definition at line 150 of file region.cpp. 00151 { 00152 CurrentRegion = RectRegion; 00153 }
|
|
Merges one region with another.
Definition at line 170 of file region.cpp. 00171 { 00172 return FALSE; 00173 }
|
|
|