--- nfo/perl/libs/Data/Storage/Handler/Abstract.pm 2002/12/13 21:48:35 1.8 +++ nfo/perl/libs/Data/Storage/Handler/Abstract.pm 2002/12/19 16:30:23 1.9 @@ -1,7 +1,10 @@ ## -------------------------------------------------------------------------------- -## $Id: Abstract.pm,v 1.8 2002/12/13 21:48:35 joko Exp $ +## $Id: Abstract.pm,v 1.9 2002/12/19 16:30:23 joko Exp $ ## -------------------------------------------------------------------------------- ## $Log: Abstract.pm,v $ +## Revision 1.9 2002/12/19 16:30:23 joko +## + added 'sub dropDb' and 'sub rebuildDb' as croakers for concrete implementations of methods in proper handlers +## ## Revision 1.8 2002/12/13 21:48:35 joko ## + sub _abstract_function ## @@ -370,4 +373,16 @@ return; } + sub dropDb { + my $self = shift; + $self->_abstract_function('dropDb'); + return; + } + + sub rebuildDb { + my $self = shift; + $self->_abstract_function('rebuildDb'); + return; + } + 1;