ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/JSON-XS/XS.pm
(Generate patch)

Comparing JSON-XS/XS.pm (file contents):
Revision 1.19 by root, Sat Mar 24 22:57:12 2007 UTC vs.
Revision 1.20 by root, Sun Mar 25 00:47:42 2007 UTC

77 77
78=cut 78=cut
79 79
80package JSON::XS; 80package JSON::XS;
81 81
82use strict;
83
82BEGIN { 84BEGIN {
83 $VERSION = '0.7'; 85 our $VERSION = '0.7';
84 @ISA = qw(Exporter); 86 our @ISA = qw(Exporter);
85 87
86 @EXPORT = qw(to_json from_json); 88 our @EXPORT = qw(to_json from_json);
87 require Exporter; 89 require Exporter;
88 90
89 require XSLoader; 91 require XSLoader;
90 XSLoader::load JSON::XS::, $VERSION; 92 XSLoader::load JSON::XS::, $VERSION;
91} 93}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines