File indexing completed on 2024-06-02 03:44:22

0001 package HTMesh;
0002 
0003 use 5.008008;
0004 use strict;
0005 use warnings;
0006 
0007 require Exporter;
0008 
0009 our @ISA = qw(Exporter);
0010 
0011 # Items to export into callers namespace by default. Note: do not export
0012 # names by default without a very good reason. Use EXPORT_OK instead.
0013 # Do not simply export all your public functions/methods/constants.
0014 
0015 # This allows declaration   use HTMesh ':all';
0016 # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
0017 # will save memory.
0018 our %EXPORT_TAGS = ( 'all' => [ qw(
0019     
0020 ) ] );
0021 
0022 our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
0023 
0024 our @EXPORT = qw(
0025     
0026 );
0027 
0028 our $VERSION = '0.01';
0029 
0030 use XSLoader;
0031 
0032 XSLoader::load 'HTMesh', $VERSION;
0033 
0034 # Preloaded methods go here.
0035 
0036 1;
0037 __END__
0038 # Below is stub documentation for your module. You'd better edit it!
0039 
0040 =head1 NAME
0041 
0042 HTMesh - Perl extension for blah blah blah
0043 
0044 =head1 SYNOPSIS
0045 
0046   use HTMesh;
0047   blah blah blah
0048 
0049 =head1 DESCRIPTION
0050 
0051 Stub documentation for HTMesh, created by h2xs. It looks like the
0052 author of the extension was negligent enough to leave the stub
0053 unedited.
0054 
0055 Blah blah blah.
0056 
0057 =head2 EXPORT
0058 
0059 None by default.
0060 
0061 
0062 
0063 =head1 SEE ALSO
0064 
0065 Mention other useful documentation such as the documentation of
0066 related modules or operating system documentation (such as man pages
0067 in UNIX), or any relevant external documentation such as RFCs or
0068 standards.
0069 
0070 If you have a mailing list set up for your module, mention it here.
0071 
0072 If you have a web site set up for your module, mention it here.
0073 
0074 =head1 AUTHOR
0075 
0076 A. U. Thor, E<lt>jbowlin@chihuahuaE<gt>
0077 
0078 =head1 COPYRIGHT AND LICENSE
0079 
0080 Copyright (C) 2006 by A. U. Thor
0081 
0082 This library is free software; you can redistribute it and/or modify
0083 it under the same terms as Perl itself, either Perl version 5.8.8 or,
0084 at your option, any later version of Perl 5 you may have available.
0085 
0086 
0087 =cut