blob: b976964d8734ea83b81805d94c44a7f4a26065f9 (
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
|
package WWW::Curl::Share;
use strict;
use warnings;
use Carp;
use vars qw(@ISA @EXPORT @EXPORT_OK $AUTOLOAD);
use WWW::Curl;
require Exporter;
require AutoLoader;
@ISA = qw(Exporter DynaLoader);
@EXPORT = qw(
);
sub AUTOLOAD {
# This AUTOLOAD is used to 'autoload' constants from the constant()
# XS function.
( my $constname = $AUTOLOAD ) =~ s/.*:://;
return constant( $constname, 0 );
}
1;
__END__
Copyright (C) 2008, Anton Fedorov (datacompboy <at> mail.ru)
You may opt to use, copy, modify, merge, publish, distribute and/or sell
copies of the Software, and permit persons to whom the Software is furnished
to do so, under the terms of the MPL or the MIT/X-derivate licenses. You may
pick one of these licenses.
|