| Egg-Release documentation | Contained in the Egg-Release distribution. |
Egg::Model - Base class for model.
It is a base class for the model component.
This module has succeeded to Egg::Base.
Masatoshi Mizuno <lushe&64;cpan.org>
Copyright (C) 2008 Bee Flag, Corp. <http://egg.bomcity.com/>.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.
| 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__