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