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 >
Text File  |  1994-02-28  |  565b  |  25 lines

  1. #include "FiveWin.ch"
  2.  
  3. //----------------------------------------------------------------------------//
  4.  
  5. CLASS TRect
  6.  
  7.    DATA   nTop, nLeft, nBottom, nRight
  8.  
  9.    METHOD New( nTop, nLeft, nBottom, nRight ) CONSTRUCTOR
  10.  
  11. ENDCLASS
  12.  
  13. //----------------------------------------------------------------------------//
  14.  
  15. METHOD New( nTop, nLeft, nBottom, nRight ) CLASS TRect
  16.  
  17.    ::nTop    = nTop
  18.    ::nLeft   = nLeft
  19.    ::nBottom = nBottom
  20.    ::nRight  = nRight
  21.  
  22. return
  23.  
  24. //----------------------------------------------------------------------------//
  25.