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