home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / ioc / expr / readme.txt < prev   
Encoding:
Text File  |  1996-02-22  |  2.0 KB  |  46 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 - Expr
  15.  
  16.    DESCRIPTION:
  17.         This program uses the multiway tree class, IMultiwayTree, to demonstate
  18.         the use of some common functions of mutiway trees.
  19.         A tree for the following expression is constructed
  20.                      (8+2) * (2+4) / (7-5) ==> result: 30
  21.         A subtree (with two operands and one operator) is calculated and replaced
  22.         by the result.
  23.  
  24.    TASK:
  25.         This program creates and uses a multiway tree to demonstrate
  26.         the use of some common functions of mutiway trees.
  27.  
  28.    CONCEPT/FEATURE:
  29.         This program is a sample to demonstrate the use of the multiway tree class,
  30.         IMultiwayTree.
  31.  
  32.    HOW TO RUN THE SAMPLE FROM THE COMMAND LINE:
  33.        From within the directory containing the sample, simply type
  34.        the name of the executable:
  35.  
  36.                  EXPR
  37.  
  38.    ADDITIONAL INFORMATION:
  39.  
  40.         For additional information on this and other samples shipped with
  41.         the VisualAge for C++ product, see the Guide to Samples notebook.
  42.  
  43.         To access the notebook from Program Manager, open the VisualAge
  44.         for C++ product object, then open the Guide to Samples notebook.
  45.  
  46.