# This is a special object that contains help text, and that is
# queried for help as a last resort.

package HelpObject;
use strict;
use vars qw(@ISA);
use Thing;
@ISA=qw{Thing};

# Not much to this class. :-)

1
