/****************************************************************************
 File: readme.txt

 (C) Copyright 1992 by GO Corporation, All Rights Reserved.

 $Revision:   1.4  $
   $Author:   kcatlin  $
     $Date:   31 Jan 1992 08:37:18  $

 As its name implies, Template Application is a template, "cookie cutter"
 application. As such, it does not exhibit much functionality. However,
 it does handle many "typical" application messages. This aspect makes
 Template Application a good starting point for building a real application.
****************************************************************************/

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *								Objectives					  			   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
 Template Application serves as a shell of an application and can be 
 used as a starting point for a real application.

 This sample application also shows how to:
	-:	file instance data
	-:	create the standard menu bar and add application-specific menus
	-:	create an icon window as a client window.
*/

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *								Class Overview	  						   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
 Template Application defines two classes: clsTemplateApp and clsFoo.
 It makes use of the following classes:

	clsApp
 	clsAppMgr
	clsClass
	clsIconWin
	clsMenu
	clsObject
*/

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *									Files Used	  						   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* 
 The code for Template Application is in \PENPOINT\SDK\SAMPLE\TEMPLTAP. The
 files are:

	FOO.C:			the source code for the foo class
	FOO.H:			the header file for the foo class
	METHODS.TBL: 	the list of messages that the classes respond to,
					and the associated message handlers to call
	TEMPLATE.RC:	resource file containing error message strings
	TEMPLTAP.C:		the source code for the application class
	TEMPLTAP.H:		the header file for the application class.
*/ 

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *								Compiling	  							   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* 
 To compile TemplateApp, just 
	cd \penpoint\sdk\sample\templtap
	wmake
 This compiles the application and creates TEMPLTAP.EXE and APP.RES in 
 \PENPOINT\APP\TEMPLTAP.
*/

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *								Running	  								   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* 
 After compiling TemplateApp, you can run it by
	1) Adding \\boot\penpoint\app\Template Application to 
	\PENPOINT\BOOT\APP.INI
    2) Booting PenPoint
	3) Creating a new Template Application document, and turning to it.
 Alternatively, you can boot PenPoint and then install Template Application
 via the Connections Notebook.
*/

