#! /bin/sh
#
#	This script lists the action table found within the specified file.
#	The output of this script is then parsed to determine what callbacks
#	exist for the specified subclass.
#
#	usage:
#		subclass_quarks filenam
#	input <...>:
#                 *      Quark Initialization
#                 */
#        	}
#
#
sed -n -e '/Quark Initialization/,/}/p' $1 | sed -e '

/Quark Initialization/d
/}/d
/\*\//d
s/=.*$//
s/ //g
s/Q//
s/	//g
/^$/d
'
