xref: /trunk/main/cppuhelper/test/testlib/UNO.pm (revision bb113e63)
1*bb113e63SAndrew Rist# *************************************************************
2*bb113e63SAndrew Rist#
3*bb113e63SAndrew Rist#  Licensed to the Apache Software Foundation (ASF) under one
4*bb113e63SAndrew Rist#  or more contributor license agreements.  See the NOTICE file
5*bb113e63SAndrew Rist#  distributed with this work for additional information
6*bb113e63SAndrew Rist#  regarding copyright ownership.  The ASF licenses this file
7*bb113e63SAndrew Rist#  to you under the Apache License, Version 2.0 (the
8*bb113e63SAndrew Rist#  "License"); you may not use this file except in compliance
9*bb113e63SAndrew Rist#  with the License.  You may obtain a copy of the License at
10*bb113e63SAndrew Rist#
11*bb113e63SAndrew Rist#    http://www.apache.org/licenses/LICENSE-2.0
12*bb113e63SAndrew Rist#
13*bb113e63SAndrew Rist#  Unless required by applicable law or agreed to in writing,
14*bb113e63SAndrew Rist#  software distributed under the License is distributed on an
15*bb113e63SAndrew Rist#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*bb113e63SAndrew Rist#  KIND, either express or implied.  See the License for the
17*bb113e63SAndrew Rist#  specific language governing permissions and limitations
18*bb113e63SAndrew Rist#  under the License.
19*bb113e63SAndrew Rist#
20*bb113e63SAndrew Rist# *************************************************************
21cdf0e10cSrcweirpackage UNO;
22cdf0e10cSrcweir
23cdf0e10cSrcweirrequire 5.005_62;
24cdf0e10cSrcweiruse strict;
25cdf0e10cSrcweiruse warnings;
26cdf0e10cSrcweir
27cdf0e10cSrcweirrequire Exporter;
28cdf0e10cSrcweirrequire DynaLoader;
29cdf0e10cSrcweir
30cdf0e10cSrcweirour @ISA = qw(Exporter DynaLoader);
31cdf0e10cSrcweir
32cdf0e10cSrcweir# Items to export into callers namespace by default. Note: do not export
33cdf0e10cSrcweir# names by default without a very good reason. Use EXPORT_OK instead.
34cdf0e10cSrcweir# Do not simply export all your public functions/methods/constants.
35cdf0e10cSrcweir
36cdf0e10cSrcweir# This allows declaration	use UNO ':all';
37cdf0e10cSrcweir# If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
38cdf0e10cSrcweir# will save memory.
39cdf0e10cSrcweirour %EXPORT_TAGS = ( 'all' => [ qw(
40cdf0e10cSrcweir
41cdf0e10cSrcweir) ] );
42cdf0e10cSrcweir
43cdf0e10cSrcweirour @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
44cdf0e10cSrcweir
45cdf0e10cSrcweirour @EXPORT = qw(
46cdf0e10cSrcweir
47cdf0e10cSrcweir);
48cdf0e10cSrcweirour $VERSION = '0.01';
49cdf0e10cSrcweir
50cdf0e10cSrcweirbootstrap UNO $VERSION;
51cdf0e10cSrcweir
52cdf0e10cSrcweir# Preloaded methods go here.
53cdf0e10cSrcweir
54cdf0e10cSrcweir1;
55cdf0e10cSrcweir__END__
56cdf0e10cSrcweir# Below is stub documentation for your module. You better edit it!
57cdf0e10cSrcweir
58cdf0e10cSrcweir=head1 NAME
59cdf0e10cSrcweir
60cdf0e10cSrcweirUNO - Perl extension for blah blah blah
61cdf0e10cSrcweir
62cdf0e10cSrcweir=head1 SYNOPSIS
63cdf0e10cSrcweir
64cdf0e10cSrcweir  use UNO;
65cdf0e10cSrcweir  blah blah blah
66cdf0e10cSrcweir
67cdf0e10cSrcweir=head1 DESCRIPTION
68cdf0e10cSrcweir
69cdf0e10cSrcweirStub documentation for UNO, created by h2xs. It looks like the
70cdf0e10cSrcweirauthor of the extension was negligent enough to leave the stub
71cdf0e10cSrcweirunedited.
72cdf0e10cSrcweir
73cdf0e10cSrcweirBlah blah blah.
74cdf0e10cSrcweir
75cdf0e10cSrcweir=head2 EXPORT
76cdf0e10cSrcweir
77cdf0e10cSrcweirNone by default.
78cdf0e10cSrcweir
79cdf0e10cSrcweir
80cdf0e10cSrcweir=head1 AUTHOR
81cdf0e10cSrcweir
82cdf0e10cSrcweirA. U. Thor, a.u.thor@a.galaxy.far.far.away
83cdf0e10cSrcweir
84cdf0e10cSrcweir=head1 SEE ALSO
85cdf0e10cSrcweir
86cdf0e10cSrcweirperl(1).
87cdf0e10cSrcweir
88cdf0e10cSrcweir=cut
89