################################################################################ # WeBWorK mod_perl (c) 2000-2002 WeBWorK Project # $Id$ ################################################################################ package WeBWorK::DB::Record::Problem; use base WeBWorK::DB::Record; =head1 NAME WeBWorK::DB::Record::Problem - represent a record from the problem table. =cut use strict; use warnings; sub FIELDS($) {qw( id set_id source_file value max_attempts )} 1;