/usr/local/CPAN/HTML-DBForm/HTML/DBForm/Search.pm


package HTML::DBForm::Search;

use strict;
use base qw(Class::Factory);

our $VERSION = '1.05';

sub run	{ die "define run() in implementation" };

__PACKAGE__->add_factory_type( dropdown	=> 'HTML::DBForm::Search::DropDown');
__PACKAGE__->add_factory_type( tablelist => 'HTML::DBForm::Search::TableList');




1;