/[cvs]/nfo/perl/libs/Data/Storage/Handler/Abstract.pm
ViewVC logotype

Diff of /nfo/perl/libs/Data/Storage/Handler/Abstract.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3 by joko, Fri Nov 29 04:58:20 2002 UTC revision 1.4 by joko, Sun Dec 1 04:45:38 2002 UTC
# Line 3  Line 3 
3  #  $Id$  #  $Id$
4  #  #
5  #  $Log$  #  $Log$
6    #  Revision 1.4  2002/12/01 04:45:38  joko
7    #  + sub eraseAll
8    #  + sub createDb
9    #
10  #  Revision 1.3  2002/11/29 04:58:20  joko  #  Revision 1.3  2002/11/29 04:58:20  joko
11  #  + Storage::Result now uses the same dispatching mechanism like Storage::Handler  #  + Storage::Result now uses the same dispatching mechanism like Storage::Handler
12  #  #
# Line 182  sub _typeCheck { Line 186  sub _typeCheck {
186    # TODO:    # TODO:
187    #   - abstract "abstract methods" to list/hash to be used in AUTOLOAD    #   - abstract "abstract methods" to list/hash to be used in AUTOLOAD
188    #      e.g.: my @ABSTRACT_METHODS = (qw( connect sendCommand getChildNodes ));    #      e.g.: my @ABSTRACT_METHODS = (qw( connect sendCommand getChildNodes ));
189      #      use Class::XYZ (Construct)
190    #   - build them via anonymous subs    #   - build them via anonymous subs
191    #   - introduce them via symbols    #   - introduce them via symbols
192    
# Line 242  sub _typeCheck { Line 247  sub _typeCheck {
247      return;      return;
248    }    }
249    
250      sub eraseAll {
251        my $self = shift;
252        $self->_abstract_function('eraseAll');
253        return;
254      }
255    
256      sub createDb {
257        my $self = shift;
258        $self->_abstract_function('createDb');
259        return;
260      }
261    
262  1;  1;

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed