Mytest.pm 772 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package Mytest;
  2. use 5.008008;
  3. use strict;
  4. use warnings;
  5. require Exporter;
  6. our @ISA = qw(Exporter);
  7. # Items to export into callers namespace by default. Note: do not export
  8. # names by default without a very good reason. Use EXPORT_OK instead.
  9. # Do not simply export all your public functions/methods/constants.
  10. # This allows declaration use Mytest ':all';
  11. # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
  12. # will save memory.
  13. our %EXPORT_TAGS = ( 'all' => [ qw(
  14. ) ] );
  15. our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
  16. our @EXPORT = qw(
  17. );
  18. our $VERSION = '0.01';
  19. require XSLoader;
  20. XSLoader::load('Mytest', $VERSION);
  21. # Preloaded methods go here.
  22. 1;
  23. __END__
  24. # Below is stub documentation for your module. You'd better edit it!
  25. =cut