home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / ioc / dskusage / readme.txt < prev   
Encoding:
Text File  |  1996-02-22  |  2.3 KB  |  48 lines

  1. **********************************************************************
  2. * DISCLAIMER OF WARRANTIES:                                          *
  3. *                                                                    *
  4. * The following enclosed code is sample code created by IBM          *
  5. * Corporation.  This sample code is not part of any standard IBM     *
  6. * product and is provided to you solely for the purpose of assisting *
  7. * you in the development of your applications.  The code is provided *
  8. * "AS IS", without warranty of any kind.  IBM shall not be liable    *
  9. * for any damages arising out of your use of the sample code, even   *
  10. * if they have been advised of the possibility of such damages       *
  11. *                                                                    *
  12. **********************************************************************
  13.  
  14. PROJECT - Disk Usage
  15.  
  16.    DESCRIPTION:
  17.         This program uses a sorted map and a sorted relation to display
  18.         sorted lists of the name and size of files contained on a disk.
  19.         It uses the default classes, ISortedMap and ISotredRelation, to
  20.         implement the collections. The program uses the sorted map to
  21.         store the name of the file because all elements in a sorted map
  22.         are unique and all names on a disk are unique. It uses a sorted
  23.         relation for the file size because there may be identical file
  24.         sizes and identical values are permissible in sorted relations.
  25.  
  26.    TASK:
  27.         This program uses a sorted map and a sorted relation to display
  28.         sorted lists of the name and size of files contained on a disk.
  29.  
  30.    CONCEPT/FEATURE:
  31.         This program is a sample to demonstrate the use of the default
  32.         classes ISortedMap and ISortedRelation.
  33.  
  34.    HOW TO RUN THE SAMPLE FROM THE COMMAND LINE:
  35.        From within the directory containing the sample, simply type
  36.        the name of the executable:
  37.  
  38.                  DSKUSAGE
  39.  
  40.    ADDITIONAL INFORMATION:
  41.  
  42.         For additional information on this and other samples shipped with
  43.         the VisualAge for C++ product, see the Guide to Samples notebook.
  44.  
  45.         To access the notebook from Program Manager, open the VisualAge
  46.         for C++ product object, then open the Guide to Samples notebook.
  47.  
  48.