Fixing page numbering in searchresultlist-auth.tmpl
[koha.git] / C4 / Barcodes / incremental.pm
blob7cd3e3354e8bb24b1dba3ebb2ea04be571be8ac6
1 package C4::Barcodes::incremental;
3 # Copyright 2008 LibLime
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA 02111-1307 USA
20 use strict;
21 use warnings;
23 use vars qw($VERSION @ISA);
25 BEGIN {
26 $VERSION = 0.01;
27 @ISA = qw(C4::Barcodes);
31 __END__
33 =head2
35 Since incremental is the default in C4::Barcodes, we do not override anything here.
36 In fact, this file is more of a place holder.
38 =cut