#! /bin/sh
#
#	This script locates the primary sections (public, private, and
#	protected) for each defined class within the specified file.
#	All information is written to stdout.
#	The output of this script is then parsed to determine where to 
#	insert new code into a subclass header file.
#
#	usage:
#		subclass_header_sections filenam
#
egrep -n "public|private:|protected:|^}" $1
