# The LearningOnline Network with CAPA # mutliple choice style responses # 11/23,11/24,11/28 Gerd Kortemeyer package Apache::radioresponse; use strict; sub BEGIN { &Apache::lonxml::register('Apache::radioresponse',('radioresponse','foilgroup','foil')); } sub start_radioresponse { } sub end_radioresponse { } sub start_foilgroup { } sub end_foilgroup { } sub start_foil { } sub end_foil { } 1; __END__