[system] / trunk / webwork2 / lib / WeBWorK / Problem.pm Repository:
ViewVC logotype

View of /trunk/webwork2/lib/WeBWorK/Problem.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 361 - (download) (as text) (annotate)
Tue Jun 11 23:33:03 2002 UTC (10 years, 11 months ago) by sh002i
File size: 484 byte(s)
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