Ignore:
Timestamp:
2005-07-26T10:15:08+12:00 (19 years ago)
Author:
davidb
Message:

Introduction of is_incremental() function in base class (not incremental
by default). Over-ridden by inherited classes if incremental building
possible.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/perllib/basebuildproc.pm

    r10251 r10304  
    140140}
    141141
     142sub is_incremental
     143{
     144    # By default we return 'no' as the answer
     145    # Safer to assume non-incremental to start with, and then override in
     146    # inherited classes that are.
     147
     148    return 0;
     149}
     150
    142151sub get_num_docs {
    143152    my $self = shift (@_);
Note: See TracChangeset for help on using the changeset viewer.