Version 3.6.0.2, tag libreoffice-3.6.0.2
[LibreOffice.git] / cppuhelper / test / testlib / UNO.pm
blob052a9ea986d3e252d6615f442a9d07480761a82b
1 package UNO;
3 require 5.005_62;
4 use strict;
5 use warnings;
7 require Exporter;
8 require DynaLoader;
10 our @ISA = qw(Exporter DynaLoader);
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.
16 # This allows declaration use UNO ':all';
17 # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
18 # will save memory.
19 our %EXPORT_TAGS = ( 'all' => [ qw(
21 ) ] );
23 our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
25 our @EXPORT = qw(
28 our $VERSION = '0.01';
30 bootstrap UNO $VERSION;
32 # Preloaded methods go here.
35 __END__
36 # Below is stub documentation for your module. You better edit it!
38 =head1 NAME
40 UNO - Perl extension for blah blah blah
42 =head1 SYNOPSIS
44 use UNO;
45 blah blah blah
47 =head1 DESCRIPTION
49 Stub documentation for UNO, created by h2xs. It looks like the
50 author of the extension was negligent enough to leave the stub
51 unedited.
53 Blah blah blah.
55 =head2 EXPORT
57 None by default.
60 =head1 AUTHOR
62 A. U. Thor, a.u.thor@a.galaxy.far.far.away
64 =head1 SEE ALSO
66 perl(1).
68 =cut