home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / msdos / lynx / source / doslynx / src / tdiskvie.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-25  |  707 b   |  23 lines

  1. //    Copyright (c) 1994, University of Kansas, All Rights Reserved
  2. //
  3. //    Class:        TDiskView
  4. //    Include File:    tdiskvie.h
  5. //    Purpose:    Provide a view of free disk space in the temporary
  6. //            directory.
  7. //    Remarks/Portability/Dependencies/Restrictions:
  8. //    Revision History:
  9. //        02-18-94    created
  10. #include"tdiskvie.h"
  11.  
  12. TDiskView::TDiskView(TRect& TR_dimensions) : TView(TR_dimensions)    {
  13. //    Purpose:    Constructor for the view.
  14. //    Arguments:    TR_dimensions    The size of the view.
  15. //    Return Value:    none
  16. //    Remarks/Portability/Dependencies/Restrictions:
  17. //    Revision History:
  18. //        02-18-94    created
  19.  
  20.     //    Just set the appropriate members to some initial value.
  21.     uli_past = 0L;
  22.     uli_pres = GetDiskFree();
  23. }