Perl will do that in a pinch. :)
foreach $a ( <C:\\msdev6\\vc98\\mfc\\include\\*.h> )
{
open HEADER, $a or die $!;
while ( <HEADER> )
{
print "$1\n" if /^class (\w+)/;
}
close HEADER;
}
--Mike-- http://home.inreach.com/mdunn/ You are the weakest link, GOODBYE!