Parent Directory
|
Revision Log
started the Webwork database interface. fun, fun, fun... -sam
1 ################################################################################ 2 # WeBWorK mod_perl (c) 1995-2002 WeBWorK Team, Univeristy of Rochester 3 # $Id$ 4 ################################################################################ 5 6 package WeBWorK::Problem; 7 8 use strict; 9 use warnings; 10 use Class::Struct; 11 12 struct map { $_ => '$' } our @FIELDS = qw( 13 id 14 set_id 15 source_file 16 value 17 max_attempts 18 problem_seed 19 status 20 attempted 21 last_answer 22 num_correct 23 num_incorrect 24 ); 25 26 1;
| aubreyja at gmail dot com | ViewVC Help |
| Powered by ViewVC 1.0.9 |