]> git.donarmstrong.com Git - lib.git/blobdiff - templates/perl_module_header.pm
add templates
[lib.git] / templates / perl_module_header.pm
diff --git a/templates/perl_module_header.pm b/templates/perl_module_header.pm
new file mode 100644 (file)
index 0000000..774dcc5
--- /dev/null
@@ -0,0 +1,54 @@
+# This module is part of , and is released
+# under the terms of the GPL version 2, or any later version. See the
+# file README and COPYING for more information.
+# Copyright 2003 by Don Armstrong <don@donarmstrong.com>.
+# $Id: $
+
+package ;
+
+=head1 NAME
+
+ --
+
+=head1 SYNOPSIS
+
+
+=head1 DESCRIPTION
+
+
+=head1 BUGS
+
+None known.
+
+=cut
+
+
+use strict;
+use vars qw($VERSION $DEBUG %EXPORT_TAGS @EXPORT_OK @EXPORT);
+use base qw(Exporter);
+
+BEGIN{
+     ($VERSION) = q$Revision: 1.3 $ =~ /^Revision:\s+([^\s+])/;
+     $DEBUG = 0 unless defined $DEBUG;
+
+     @EXPORT = ()
+#    %EXPORT_TAGS = (a    => [qw()]
+#                  );
+     @EXPORT_OK = ();
+#    Exporter::export_ok_tags(qw(add get));
+     $EXPORT_TAGS{all} = [@EXPORT_OK];
+
+}
+
+
+
+1;
+
+
+__END__
+
+
+
+
+
+