package DILBERT_Table;
 
# Author : Heng Jin
# Date : April 9th. 2001

# The  DILBERT Table object is an base class that can be easily
# subclassed, to produce objects, which correspond to a table in DILBERT,
# allowing retrieval of a single row from the database.

# All functionality is currently inherited from DB_Table which
# provides AUTOLOADed methods for retrieval of data from those columns
# in that table, as well as methods for updating and insertion

use strict;
use vars qw (@ISA);

use lib "/usr/local/dicty/www_dictybase/db/lib/common/Objects";
use DB_Table;
@ISA = qw (DB_Table);

########################################################################
# 
#   INSTANCE METHODS
#
########################################################################

########################################################################
sub schema{
########################################################################
# Overrides DB_Table schema with 'DILBERT'schema

    return 'DILBERT';

}


##########################################################################

1; # to keep Perl happy
