xref: /aoo41x/main/cppuhelper/test/testlib/UNO.pm (revision cdf0e10c)
1*cdf0e10cSrcweirpackage UNO;
2*cdf0e10cSrcweir
3*cdf0e10cSrcweirrequire 5.005_62;
4*cdf0e10cSrcweiruse strict;
5*cdf0e10cSrcweiruse warnings;
6*cdf0e10cSrcweir
7*cdf0e10cSrcweirrequire Exporter;
8*cdf0e10cSrcweirrequire DynaLoader;
9*cdf0e10cSrcweir
10*cdf0e10cSrcweirour @ISA = qw(Exporter DynaLoader);
11*cdf0e10cSrcweir
12*cdf0e10cSrcweir# Items to export into callers namespace by default. Note: do not export
13*cdf0e10cSrcweir# names by default without a very good reason. Use EXPORT_OK instead.
14*cdf0e10cSrcweir# Do not simply export all your public functions/methods/constants.
15*cdf0e10cSrcweir
16*cdf0e10cSrcweir# This allows declaration	use UNO ':all';
17*cdf0e10cSrcweir# If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
18*cdf0e10cSrcweir# will save memory.
19*cdf0e10cSrcweirour %EXPORT_TAGS = ( 'all' => [ qw(
20*cdf0e10cSrcweir
21*cdf0e10cSrcweir) ] );
22*cdf0e10cSrcweir
23*cdf0e10cSrcweirour @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
24*cdf0e10cSrcweir
25*cdf0e10cSrcweirour @EXPORT = qw(
26*cdf0e10cSrcweir
27*cdf0e10cSrcweir);
28*cdf0e10cSrcweirour $VERSION = '0.01';
29*cdf0e10cSrcweir
30*cdf0e10cSrcweirbootstrap UNO $VERSION;
31*cdf0e10cSrcweir
32*cdf0e10cSrcweir# Preloaded methods go here.
33*cdf0e10cSrcweir
34*cdf0e10cSrcweir1;
35*cdf0e10cSrcweir__END__
36*cdf0e10cSrcweir# Below is stub documentation for your module. You better edit it!
37*cdf0e10cSrcweir
38*cdf0e10cSrcweir=head1 NAME
39*cdf0e10cSrcweir
40*cdf0e10cSrcweirUNO - Perl extension for blah blah blah
41*cdf0e10cSrcweir
42*cdf0e10cSrcweir=head1 SYNOPSIS
43*cdf0e10cSrcweir
44*cdf0e10cSrcweir  use UNO;
45*cdf0e10cSrcweir  blah blah blah
46*cdf0e10cSrcweir
47*cdf0e10cSrcweir=head1 DESCRIPTION
48*cdf0e10cSrcweir
49*cdf0e10cSrcweirStub documentation for UNO, created by h2xs. It looks like the
50*cdf0e10cSrcweirauthor of the extension was negligent enough to leave the stub
51*cdf0e10cSrcweirunedited.
52*cdf0e10cSrcweir
53*cdf0e10cSrcweirBlah blah blah.
54*cdf0e10cSrcweir
55*cdf0e10cSrcweir=head2 EXPORT
56*cdf0e10cSrcweir
57*cdf0e10cSrcweirNone by default.
58*cdf0e10cSrcweir
59*cdf0e10cSrcweir
60*cdf0e10cSrcweir=head1 AUTHOR
61*cdf0e10cSrcweir
62*cdf0e10cSrcweirA. U. Thor, a.u.thor@a.galaxy.far.far.away
63*cdf0e10cSrcweir
64*cdf0e10cSrcweir=head1 SEE ALSO
65*cdf0e10cSrcweir
66*cdf0e10cSrcweirperl(1).
67*cdf0e10cSrcweir
68*cdf0e10cSrcweir=cut
69