home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 16
/
CD_ASCQ_16_0994.iso
/
news
/
4611
/
fw16d.ins
/
SOURCE
/
CLASSES
/
RECT.PRG
< prev
next >
Wrap
Text File
|
1994-02-28
|
565b
|
25 lines
#include "FiveWin.ch"
//----------------------------------------------------------------------------//
CLASS TRect
DATA nTop, nLeft, nBottom, nRight
METHOD New( nTop, nLeft, nBottom, nRight ) CONSTRUCTOR
ENDCLASS
//----------------------------------------------------------------------------//
METHOD New( nTop, nLeft, nBottom, nRight ) CLASS TRect
::nTop = nTop
::nLeft = nLeft
::nBottom = nBottom
::nRight = nRight
return
//----------------------------------------------------------------------------//