comparison plugins/perl/common/Gaim.pm @ 6508:cbd24b37350d

[gaim-migrate @ 7025] Okay, ready for some breakage again? I rewrote the perl loader plugin. All old scripts are broken, but the new API will be much better. Currently, you can access accounts and do debug output, and that's it, but adding support for new things is much easier. Please don't come after me with pitchforks. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 19 Aug 2003 21:47:36 +0000
parents
children 7f5f57dd5cac
comparison
equal deleted inserted replaced
6507:c8e31153eea7 6508:cbd24b37350d
1 package Gaim;
2
3 use 5.008;
4 use strict;
5 use warnings;
6
7 require Exporter;
8
9 our @ISA = qw(Exporter);
10
11 # Items to export into callers namespace by default. Note: do not export
12 # names by default without a very good reason. Use EXPORT_OK instead.
13 # Do not simply export all your public functions/methods/constants.
14
15 # This allows declaration use Gaim ':all';
16 # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
17 # will save memory.
18 our %EXPORT_TAGS = ( 'all' => [ qw(
19
20 ) ] );
21
22 our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
23
24 our @EXPORT = qw(
25
26 );
27
28 our $VERSION = '0.01';
29
30 require XSLoader;
31 XSLoader::load('Gaim', $VERSION);
32
33 # Preloaded methods go here.
34
35 1;
36 __END__
37 # Below is stub documentation for your module. You'd better edit it!
38
39 =head1 NAME
40
41 Gaim - Perl extension for blah blah blah
42
43 =head1 SYNOPSIS
44
45 use Gaim;
46 blah blah blah
47
48 =head1 ABSTRACT
49
50 This should be the abstract for Gaim.
51 The abstract is used when making PPD (Perl Package Description) files.
52 If you don't want an ABSTRACT you should also edit Makefile.PL to
53 remove the ABSTRACT_FROM option.
54
55 =head1 DESCRIPTION
56
57 Stub documentation for Gaim, created by h2xs. It looks like the
58 author of the extension was negligent enough to leave the stub
59 unedited.
60
61 Blah blah blah.
62
63 =head2 EXPORT
64
65 None by default.
66
67
68
69 =head1 SEE ALSO
70
71 Mention other useful documentation such as the documentation of
72 related modules or operating system documentation (such as man pages
73 in UNIX), or any relevant external documentation such as RFCs or
74 standards.
75
76 If you have a mailing list set up for your module, mention it here.
77
78 If you have a web site set up for your module, mention it here.
79
80 =head1 AUTHOR
81
82 Christian Hammond, E<lt>chipx86@localdomainE<gt>
83
84 =head1 COPYRIGHT AND LICENSE
85
86 Copyright 2003 by Christian Hammond
87
88 This library is free software; you can redistribute it and/or modify
89 it under the same terms as Perl itself.
90
91 =cut