aboutsummaryrefslogtreecommitdiffstats
path: root/USER/USER.pm
blob: 5c713d584d98eea481f46225e6969611429904c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package USER;

use strict;
require DynaLoader;
require Exporter;

@ISA = qw(Exporter Dynaloader);
$VERSION = '0.91';

USER->bootstrap($VERSION);

# Preloaded methods go here.

package USER::ADMIN;
our @ISA = qw();

package USER::ENT;
our @ISA = qw();

1;
__END__
# Below is stub documentation for your module. You'd better edit it!

=head1 NAME

USER - Perl extension for libuser API 

=head1 SYNOPSIS

  use USER;
  
=head1 ABSTRACT

  This should be the abstract for USER.
  The abstract is used when making PPD (Perl Package Description) files.
  If you don't want an ABSTRACT you should also edit Makefile.PL to
  remove the ABSTRACT_FROM option.

=head1 DESCRIPTION

Stub documentation for USER, created by h2xs. It looks like the
author of the extension was negligent enough to leave the stub
unedited.

Blah blah blah.

=head2 EXPORT

None by default.



=head1 SEE ALSO

Mention other useful documentation such as the documentation of
related modules or operating system documentation (such as man pages
in UNIX), or any relevant external documentation such as RFCs or
standards.

If you have a mailing list set up for your module, mention it here.

If you have a web site set up for your module, mention it here.

=head1 AUTHOR

daouda, E<lt>daouda@mandrakesoft.comE<gt>

=head1 COPYRIGHT AND LICENSE

Copyright 2003 by Mandrakesoft SA

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself. 

=cut