]> git.donarmstrong.com Git - lib.git/blob - templates/perl_module_header.pm
* add debbugs reopen war
[lib.git] / templates / perl_module_header.pm
1 # This module is part of , and is released
2 # under the terms of the GPL version 2, or any later version. See the
3 # file README and COPYING for more information.
4 # Copyright 2008 by Don Armstrong <don@donarmstrong.com>.
5 # $Id$
6
7 package ;
8
9 =head1 NAME
10
11  --
12
13 =head1 SYNOPSIS
14
15
16 =head1 DESCRIPTION
17
18
19 =head1 BUGS
20
21 None known.
22
23 =cut
24
25 use warnings;
26 use strict;
27 use vars qw($VERSION $DEBUG %EXPORT_TAGS @EXPORT_OK @EXPORT);
28 use base qw(Exporter);
29
30 BEGIN{
31      ($VERSION) = q$Revision$ =~ /^Revision:\s+([^\s+])/;
32      $DEBUG = 0 unless defined $DEBUG;
33
34      @EXPORT = ();
35      %EXPORT_TAGS = (#a    => [qw()],
36                     );
37      @EXPORT_OK = ();
38      Exporter::export_ok_tags(keys %EXPORT_TAGS);
39      $EXPORT_TAGS{all} = [@EXPORT_OK];
40
41 }
42
43
44
45 1;
46
47
48 __END__
49
50
51
52
53
54