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

  1. ***************************************************************************
  2. * COMPOUND DOCUMENT SAMPLE 1 "Basic Server" - Readme File                 *
  3. *                                                                         *
  4. * COPYRIGHT: Copyright(C) International Business Machines Corp.,1992,1996.*
  5. *                                                                         *
  6. * DISCLAIMER OF WARRANTIES:                                               *
  7. *   The following [enclosed] code is sample code created by IBM           *
  8. *   Corporation.  This sample code is not part of any standard IBM product*
  9. *   and is provided to you solely for the purpose of assisting you in the *
  10. *   development of your applications.  The code is provided "AS IS",      *
  11. *   without warranty of any kind.  IBM shall not be liable for any damages*
  12. *   arising out of your use of the sample code, even if they have been    *
  13. *   advised of the possibility of such damages.                           *
  14. *-------------------------------------------------------------------------*
  15. * See the IBM User Interface Class Library User's Guide                   *
  16. *   for more information about this sample program.                       *
  17. *                                                                         *
  18. * Compound Document Sample 1 "Basic Server"                               *
  19. *                                                                         *
  20. *  DESCRIPTION:                                                           *
  21. * - Sample 1 is a simple demonstration of a Compound Document Framework   * 
  22. *   server. This illustrates the minimum steps required to create a server*
  23. *   application. The Compound Document Framework provides a large portion *
  24. *   of the default functionality for a server. This server includes       *
  25. *   streaming thus allowing the user to save or load the model data using *
  26. *   the extended type system. Files will be saved with an extension of    * 
  27. *   .CD1.                                                                 * 
  28. *                                                                         *
  29. * TASK:                                                                   *
  30. * - Builds a view which displays an Entryfield which is initialized with  *
  31. *   model data. The model data is initially set to 'Hello World'. There   * 
  32. *   is no mechanism in this sample to allow the user to update the model  * 
  33. *   data.                                                                 *
  34. *                                                                         *
  35. * CONCEPTS/FEATURES                                                       *
  36. * - This sample illustrates how to create a derived model and view classes*
  37. *   from the Compound Document Framework. As mentioned before very few    *
  38. *   modifications need to be made as the inherited classes provided most  * 
  39. *   of the requirements.                                                  *
  40. *                                                                         *
  41. ***************************************************************************
  42. * HOW TO RUN THE PROJECT FROM THE COMMAND LINE:                           *
  43. *                                                                         *
  44. * The sample application can be built by entering:                        *
  45. *     nmake                                                               *
  46. * with no options while in the aCDF1 directory containing the Compound    *
  47. * Document Framework sample 1 application files.  The makefile is named   *
  48. * Makefile This will generate an executable file called:                  *
  49. *     aCDF1.exe                                                           *
  50. * which can be run from the command line.                                 *
  51. * To clean up the files generated from running make, enter:               *
  52. *     nmake clean                                                         *
  53. *                                                                         *
  54. ***************************************************************************
  55. * HOW TO RUN THE PROJECT FROM WITHIN THE WORKFRAME ENVIRONMENT:           *
  56. *                                                                         *
  57. * The sample WorkFrame project can be opened by entering:                 *
  58. *     iwf aCDF1.iwp                                                       *
  59. * The sample can be rebuilt by selecting the WorkFrame menu items:        *
  60. *     "Project" and "Build All" (or press the "Build ALL" toolbar button) *
  61. * The sample can be run by selecting the WorkFrame menu items:            *
  62. *     "Project" and "Run" (or double click on the aCDF1.exe icon)         *
  63. ***************************************************************************
  64. * ADDITIONAL INFORMATION:                                                 *
  65. *                                                                         *
  66. * For additional information on this and other samples shipped            *
  67. * with the VisualAge for C++ product, please see the Guide to Samples     *
  68. * notebook.                                                               *
  69. *                                                                         *
  70. * To access the notebook from Program Manager, open the VisualAge for     *
  71. * C++ product object, then open the Guide to Samples notebook.            *
  72. ***************************************************************************
  73. * SHIPPED FILE LIST:                                                      *
  74. *                                                                         *
  75. *       Readme.txt      - Instructions for using this program             *
  76. *       aCDFMdl1.cpp    - Source code for the Model class                 *
  77. *       aCDFMdl1.hpp    - Header file for the Model class                 *
  78. *       aCDFVw1.cpp     - Source code for the View class                  *
  79. *       aCDFVw1.hpp     - Header code for the View class                  *
  80. *       aCDFUID1.hpp    - Header file containing the class id             *
  81. *       aCDFRes1.h      - Symbolic definition file                        *
  82. *       aCDFRes1.rc     - Resource file                                   *
  83. *       aCDFRes1.ico    - Icon File                                       *
  84. *       Makefile        - Makefile                                        *
  85. *       aCDF1.ipw       - WorkFrame project file                          *
  86. *       aCDF1.iwo       - WorkFrame options file (binary)                 *
  87. *       aCDF1.exe       - Prebuilt executable                             *
  88. ***************************************************************************
  89.