***************************************************************************
* COMPOUND DOCUMENT SAMPLE 1 "Basic Server" - Readme File                 *
*                                                                         *
* COPYRIGHT: Copyright(C) International Business Machines Corp.,1992,1996.*
*                                                                         *
* DISCLAIMER OF WARRANTIES:                                               *
*   The following [enclosed] code is sample code created by IBM           *
*   Corporation.  This sample code is not part of any standard IBM product*
*   and is provided to you solely for the purpose of assisting you in the *
*   development of your applications.  The code is provided "AS IS",      *
*   without warranty of any kind.  IBM shall not be liable for any damages*
*   arising out of your use of the sample code, even if they have been    *
*   advised of the possibility of such damages.                           *
*-------------------------------------------------------------------------*
* See the IBM User Interface Class Library User's Guide                   *
*   for more information about this sample program.                       *
*                                                                         *
* Compound Document Sample 1 "Basic Server"                               *
*                                                                         *
*  DESCRIPTION:                                                           *
* - Sample 1 is a simple demonstration of a Compound Document Framework   * 
*   server. This illustrates the minimum steps required to create a server*
*   application. The Compound Document Framework provides a large portion *
*   of the default functionality for a server. This server includes       *
*   streaming thus allowing the user to save or load the model data using *
*   the extended type system. Files will be saved with an extension of    * 
*   .CD1.                                                                 * 
*                                                                         *
* TASK:                                                                   *
* - Builds a view which displays an Entryfield which is initialized with  *
*   model data. The model data is initially set to 'Hello World'. There   * 
*   is no mechanism in this sample to allow the user to update the model  * 
*   data.                                                                 *
*                                                                         *
* CONCEPTS/FEATURES                                                       *
* - This sample illustrates how to create a derived model and view classes*
*   from the Compound Document Framework. As mentioned before very few    *
*   modifications need to be made as the inherited classes provided most  * 
*   of the requirements.                                                  *
*                                                                         *
***************************************************************************
* HOW TO RUN THE PROJECT FROM THE COMMAND LINE:                           *
*                                                                         *
* The sample application can be built by entering:                        *
*     nmake                                                               *
* with no options while in the aCDF1 directory containing the Compound    *
* Document Framework sample 1 application files.  The makefile is named   *
* Makefile This will generate an executable file called:                  *
*     aCDF1.exe                                                           *
* which can be run from the command line.                                 *
* To clean up the files generated from running make, enter:               *
*     nmake clean                                                         *
*                                                                         *
***************************************************************************
* HOW TO RUN THE PROJECT FROM WITHIN THE WORKFRAME ENVIRONMENT:           *
*                                                                         *
* The sample WorkFrame project can be opened by entering:                 *
*     iwf aCDF1.iwp                                                       *
* The sample can be rebuilt by selecting the WorkFrame menu items:        *
*     "Project" and "Build All" (or press the "Build ALL" toolbar button) *
* The sample can be run by selecting the WorkFrame menu items:            *
*     "Project" and "Run" (or double click on the aCDF1.exe icon)         *
***************************************************************************
* ADDITIONAL INFORMATION:                                                 *
*                                                                         *
* For additional information on this and other samples shipped            *
* with the VisualAge for C++ product, please see the Guide to Samples     *
* notebook.                                                               *
*                                                                         *
* To access the notebook from Program Manager, open the VisualAge for     *
* C++ product object, then open the Guide to Samples notebook.            *
***************************************************************************
* SHIPPED FILE LIST:                                                      *
*                                                                         *
*       Readme.txt      - Instructions for using this program             *
*       aCDFMdl1.cpp    - Source code for the Model class                 *
*       aCDFMdl1.hpp    - Header file for the Model class                 *
*       aCDFVw1.cpp     - Source code for the View class                  *
*       aCDFVw1.hpp     - Header code for the View class                  *
*       aCDFUID1.hpp    - Header file containing the class id             *
*       aCDFRes1.h      - Symbolic definition file                        *
*       aCDFRes1.rc     - Resource file                                   *
*       aCDFRes1.ico    - Icon File                                       *
*       Makefile        - Makefile                                        *
*       aCDF1.ipw       - WorkFrame project file                          *
*       aCDF1.iwo       - WorkFrame options file (binary)                 *
*       aCDF1.exe       - Prebuilt executable                             *
***************************************************************************
