[system] / trunk / webwork2 / lib / WeBWorK / DB / Record / ProblemLibraryPgfiles.pm Repository:
ViewVC logotype

View of /trunk/webwork2/lib/WeBWorK/DB/Record/ProblemLibraryPgfiles.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2008 - (download) (as text) (annotate)
Thu May 6 03:01:22 2004 UTC (9 years ago) by jj
File size: 1247 byte(s)
Initial import.

    1 ################################################################################
    2 # WeBWorK Online Homework Delivery System
    3 # Copyright © 2000-2003 The WeBWorK Project, http://openwebwork.sf.net/
    4 # $CVSHeader: $
    5 #
    6 # This program is free software; you can redistribute it and/or modify it under
    7 # the terms of either: (a) the GNU General Public License as published by the
    8 # Free Software Foundation; either version 2, or (at your option) any later
    9 # version, or (b) the "Artistic License" which comes with this package.
   10 #
   11 # This program is distributed in the hope that it will be useful, but WITHOUT
   12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
   13 # FOR A PARTICULAR PURPOSE.  See either the GNU General Public License or the
   14 # Artistic License for more details.
   15 ################################################################################
   16 
   17 package WeBWorK::DB::Record::ProblemLibraryPgfiles;
   18 use base WeBWorK::DB::Record;
   19 
   20 =head1 NAME
   21 
   22 WeBWorK::DB::Record::ProblemLibraryPgfiles - represent a record from the
   23    problem library pgfiles table.
   24 
   25 =cut
   26 
   27 use strict;
   28 use warnings;
   29 
   30 sub KEYFIELDS {qw(
   31   pgfiles_id
   32   path
   33 )}
   34 
   35 sub NONKEYFIELDS {qw(
   36   servername
   37 )}
   38 
   39 sub FIELDS {qw(
   40   pgfiles_id
   41   path
   42   servername
   43 )}
   44 
   45 1;

aubreyja at gmail dot com
ViewVC Help
Powered by ViewVC 1.0.9