/***********************************************************
     Copyright 2003 Rick Miller - Pulp Free Press 
     
     This source code accompanies the text C++ For Artists
     and is provided for instructional purposes only. No 
     warranty concerning the quality of the code is expressed
     or implied.

	 You are free to use this code in your programs so long
	 as this copyright notice is included in its entirety.

**********************************************************/

#ifndef __TYPICAL_CLASS_H
#define __TYPICAL_CLASS_H

class ClassName {
    public:
	             ClassName();
	    virtual ~ClassName();
	    //place other public functions here
	  
    protected:
    	//place protected functions here
	  
	private:
		//place private data members or
		//private member functions here

};
#endif

