home *** CD-ROM | disk | FTP | other *** search
- // Copyright (c) 1994, University of Kansas, All Rights Reserved
- //
- // Class: TDiskView
- // Include File: tdiskvie.h
- // Purpose: Provide a view of free disk space in the temporary
- // directory.
- // Remarks/Portability/Dependencies/Restrictions:
- // Revision History:
- // 02-18-94 created
- #include"tdiskvie.h"
-
- TDiskView::TDiskView(TRect& TR_dimensions) : TView(TR_dimensions) {
- // Purpose: Constructor for the view.
- // Arguments: TR_dimensions The size of the view.
- // Return Value: none
- // Remarks/Portability/Dependencies/Restrictions:
- // Revision History:
- // 02-18-94 created
-
- // Just set the appropriate members to some initial value.
- uli_past = 0L;
- uli_pres = GetDiskFree();
- }