Egg::Model - Base class for model.


Egg-Release documentation Contained in the Egg-Release distribution.

Index


Code Index:

NAME

Top

Egg::Model - Base class for model.

DESCRIPTION

Top

It is a base class for the model component.

This module has succeeded to Egg::Base.

SEE ALSO

Top

Egg::Release, Egg::Base,

AUTHOR

Top

Masatoshi Mizuno <lushe&64;cpan.org>

COPYRIGHT AND LICENSE

Top


Egg-Release documentation Contained in the Egg-Release distribution.

package Egg::Model;
#
# Masatoshi Mizuno E<lt>lusheE<64>cpan.orgE<gt>
#
# $Id: Model.pm 337 2008-05-14 12:30:09Z lushe $
#
use strict;
use warnings;
use base qw/ Egg::Base /;

our $VERSION= '3.00';

1;

__END__