1package ClearSilver;
2
3use 5.006;
4use strict;
5use warnings;
6
7require Exporter;
8require DynaLoader;
9
10our @ISA = qw(Exporter DynaLoader);
11
12# Items to export into callers namespace by default. Note: do not export
13# names by default without a very good reason. Use EXPORT_OK instead.
14# Do not simply export all your public functions/methods/constants.
15
16# This allows declaration	use ClearSilver ':all';
17# If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
18# will save memory.
19our %EXPORT_TAGS = ( 'all' => [ qw(
20
21) ] );
22
23our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
24
25our @EXPORT = qw(
26
27);
28our $VERSION = '0.01';
29
30bootstrap ClearSilver $VERSION;
31
32# Preloaded methods go here.
33
341;
35__END__
36# Below is stub documentation for your module. You better edit it!
37
38=head1 NAME
39
40ClearSilver - Perl extension for blah blah blah
41
42=head1 SYNOPSIS
43
44  use ClearSilver;
45  blah blah blah
46
47=head1 DESCRIPTION
48
49Stub documentation for ClearSilver, created by h2xs. It looks like the
50author of the extension was negligent enough to leave the stub
51unedited.
52
53Blah blah blah.
54
55=head2 EXPORT
56
57None by default.
58
59
60=head1 AUTHOR
61
62A. U. Thor, E<lt>a.u.thor@a.galaxy.far.far.awayE<gt>
63
64=head1 SEE ALSO
65
66L<perl>.
67
68=cut
69