| MetaStore documentation | Contained in the MetaStore distribution. |
MetaStore::DAOItem - Base class.
use MetaStore::DAOItem;
use base qw( MetaStore::DAOItem );
Base class.
MetaStore, MetaStore::Item, README
Zahatski Aliaksandr, <zag@cpan.org>
Copyright (C) 2006 by Zahatski Aliaksandr
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.8 or, at your option, any later version of Perl 5 you may have available.
| 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__