home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / VRAC / OBJ20D.ZIP / DIALOG.PRG next >
Text File  |  1993-08-13  |  638b  |  26 lines

  1. #include "Objects.ch"
  2.  
  3. // Pruebas de derivación de nuevas clases
  4.  
  5. //----------------------------------------------------------------------------//
  6.  
  7. CLASS TDialog FROM TWindow
  8.  
  9.    DATA   aControls
  10.  
  11.    METHOD New( nTop, nLeft, nBottom, nRight, cTitle, cColors ) CONSTRUCTOR
  12.  
  13. ENDCLASS
  14.  
  15. //----------------------------------------------------------------------------//
  16.  
  17. METHOD New( nTop, nLeft, nBottom, nRight, cTitle, cColors ) CLASS TDialog
  18.  
  19.    Super:New( nTop, nLeft, nBottom, nRight, cTitle, cColors )
  20.  
  21.    ::aControls = {}
  22.  
  23. return
  24.  
  25. //----------------------------------------------------------------------------//
  26.