MetaStore::DAOItem - Base class.


MetaStore documentation Contained in the MetaStore distribution.

Index


Code Index:

NAME

Top

MetaStore::DAOItem - Base class.

SYNOPSIS

Top

    use MetaStore::DAOItem;
    use base qw( MetaStore::DAOItem );




DESCRIPTION

Top

Base class.

METHODS

Top

SEE ALSO

Top

MetaStore, MetaStore::Item, README

AUTHOR

Top

Zahatski Aliaksandr, <zag@cpan.org>

COPYRIGHT AND LICENSE

Top


MetaStore documentation Contained in the MetaStore distribution.
package MetaStore::DAOItem;

use Data::Dumper;
use strict;
use warnings;
use WebDAO::Component;
use MetaStore::Item;
our @ISA = qw( MetaStore::Item WebDAO::Component  );
our $VERSION = '0.01';

sub _init {
    my $self = shift;
    $self->WebDAO::Component::_sysinit(\@_);
    return $self->SUPER::_init(@_);
}

1;
__END__