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

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

 $Revision:   1.4  $
   $Author:   kcatlin  $
     $Date:   31 Jan 1992 08:02:38  $

 Empty Application is the simplest sample application distributed 
 with the PenPoint Software Developer's Kit. It does not have a view or 
 any data. The only behavior it adds to the default PenPoint application 
 is to print out a debugging message when the application is destroyed.
 
 To provide this behavior, EmptyApp defines clsEmptyApp, which inherits
 from clsApp. In its handler for msgDestroy, clsEmptyApp prints out a 
 simple debugging message.

 clsEmptyApp inherits a rich set of default functionality from clsApp. 
 When using EmptyApp, you can create, open, float, zoom, close, rename, 
 embed, and destroy EmptyApp documents.

****************************************************************************/

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *								Objectives					  			   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
 EmptyApp is used in the Application Writing Guide to show how to compile,
 install, and run applications.

 This sample application also shows how to:
	-:	use Debugf and #ifdef DEBUG/#endif pairs
	-:	turn on message tracing for a class
	-:	let the PenPoint Application Framework provide default behavior.
*/

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *								Class Overview	  						   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
 Empty Application defines one class: clsEmptyApp. 
 It makes use of the following classes:

	clsApp
 	clsAppMgr
*/

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

	EMPTYAPP.C:		the application class's code and initialization.
	METHODS.TBL: 	the list of messages that the application class responds 
					to, and the associated message handlers to call
*/ 

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *								Compiling	  							   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* 
 To compile EmptyApp, just 
	cd \penpoint\sdk\sample\emptyapp
	wmake
 This compiles the application and creates EMPTYAPP.EXE in 
 \PENPOINT\APP\EMPTYAPP.
*/

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

