aboutsummaryrefslogtreecommitdiffstats
path: root/USER/USER.pm
diff options
context:
space:
mode:
authorDaouda Lo <daouda@mandriva.com>2003-03-27 10:45:15 +0000
committerDaouda Lo <daouda@mandriva.com>2003-03-27 10:45:15 +0000
commit8416e79c2dffd4e674171315496a423a1b4729b0 (patch)
treefe99d778db967db32d6d79b5219e1ed4ab87eae6 /USER/USER.pm
parent98ed550feb087d2dcc388ba7693b58b127e6eb3d (diff)
downloaduserdrake-8416e79c2dffd4e674171315496a423a1b4729b0.tar
userdrake-8416e79c2dffd4e674171315496a423a1b4729b0.tar.gz
userdrake-8416e79c2dffd4e674171315496a423a1b4729b0.tar.bz2
userdrake-8416e79c2dffd4e674171315496a423a1b4729b0.tar.xz
userdrake-8416e79c2dffd4e674171315496a423a1b4729b0.zip
- add library files
Diffstat (limited to 'USER/USER.pm')
-rw-r--r--USER/USER.pm75
1 files changed, 75 insertions, 0 deletions
diff --git a/USER/USER.pm b/USER/USER.pm
new file mode 100644
index 0000000..5c713d5
--- /dev/null
+++ b/USER/USER.pm
@@ -0,0 +1,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