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

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

 $Revision:   1.5  $
   $Author:   kcatlin  $
     $Date:   31 Jan 1992 08:15:32  $

 Counter Application displays a number on the screen. Every time you 
 turn to its page, Counter Application increments the number. 
 It also lets you choose the format in which to display the number 
 (decimal, octal, or hexadecimal).

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

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *								Objectives					  			   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
 Counter Application is used in the ADC labs. This sample application also 
 shows how to:
	-:	save and restore application state
	-:	memory-map state data.
*/

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *								Class Overview	  						   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
 Counter Application defines two classes: clsCntr and clsCntrApp. 
 It makes use of the following classes:

	clsApp
 	clsAppMgr
	clsClass
	clsFileHandle
	clsMenu
	clsMenuButton
	clsObject
	clsLabel
*/

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

	CNTR.C:			clsCntr's code and initialization
	CNTR.H:			header file for clsCntr
	CNTRAPP.C:		clsCntrApp's code and initialization
	CNTRAPP.H:		header file for clsCntrApp
	METHODS.TBL:	method tables for Counter Application.
*/ 

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *								Compiling	  							   *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* 
 To compile Counter Application, just 
	cd \penpoint\sdk\sample\cntrapp
	wmake
 This compiles the application and creates CNTRAPP.EXE in 
 \PENPOINT\APP\CNTRAPP.
*/

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

