source: LATMOS-Accounts/lib/LATMOS/Accounts.pm @ 2

Last change on this file since 2 was 2, checked in by nanardon, 15 years ago
  • add initial Bases work
  • Property svn:keywords set to Id Rev
File size: 1.7 KB
Line 
1package LATMOS::Accounts;
2
3use 5.010000;
4use strict;
5use warnings;
6
7require Exporter;
8
9our @ISA = qw(Exporter);
10
11# Items to export into callers namespace by default. Note: do not export
12# names by default without a very good reason. Use EXPORT_OK instead.
13# Do not simply export all your public functions/methods/constants.
14
15# This allows declaration       use LATMOS::Accounts ':all';
16# If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
17# will save memory.
18our %EXPORT_TAGS = ( 'all' => [ qw(
19       
20) ] );
21
22our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
23
24our @EXPORT = qw(
25       
26);
27
28our $VERSION = '0.01';
29
30
31# Preloaded methods go here.
32
331;
34__END__
35# Below is stub documentation for your module. You'd better edit it!
36
37=head1 NAME
38
39LATMOS::Accounts - Perl extension for blah blah blah
40
41=head1 SYNOPSIS
42
43  use LATMOS::Accounts;
44  blah blah blah
45
46=head1 DESCRIPTION
47
48Stub documentation for LATMOS::Accounts, created by h2xs. It looks like the
49author of the extension was negligent enough to leave the stub
50unedited.
51
52Blah blah blah.
53
54=head2 EXPORT
55
56None by default.
57
58
59
60=head1 SEE ALSO
61
62Mention other useful documentation such as the documentation of
63related modules or operating system documentation (such as man pages
64in UNIX), or any relevant external documentation such as RFCs or
65standards.
66
67If you have a mailing list set up for your module, mention it here.
68
69If you have a web site set up for your module, mention it here.
70
71=head1 AUTHOR
72
73Thauvin Olivier, E<lt>olivier@localdomainE<gt>
74
75=head1 COPYRIGHT AND LICENSE
76
77Copyright (C) 2009 by Thauvin Olivier
78
79This library is free software; you can redistribute it and/or modify
80it under the same terms as Perl itself, either Perl version 5.10.0 or,
81at your option, any later version of Perl 5 you may have available.
82
83
84=cut
Note: See TracBrowser for help on using the repository browser.