home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 8
/
CDASC08.ISO
/
VRAC
/
OBJ20D.ZIP
/
DIALOG.PRG
next >
Wrap
Text File
|
1993-08-13
|
638b
|
26 lines
#include "Objects.ch"
// Pruebas de derivación de nuevas clases
//----------------------------------------------------------------------------//
CLASS TDialog FROM TWindow
DATA aControls
METHOD New( nTop, nLeft, nBottom, nRight, cTitle, cColors ) CONSTRUCTOR
ENDCLASS
//----------------------------------------------------------------------------//
METHOD New( nTop, nLeft, nBottom, nRight, cTitle, cColors ) CLASS TDialog
Super:New( nTop, nLeft, nBottom, nRight, cTitle, cColors )
::aControls = {}
return
//----------------------------------------------------------------------------//