~ubuntu-branches/ubuntu/saucy/libyaml-libyaml-perl/saucy-security

« back to all changes in this revision

Viewing changes to LibYAML/lib/YAML/XS/LibYAML.pm

  • Committer: Bazaar Package Importer
  • Author(s): Ryan Niebur
  • Date: 2009-06-01 02:17:22 UTC
  • Revision ID: james.westby@ubuntu.com-20090601021722-8qlj45pmu8ffwzau
Tags: upstream-0.32
ImportĀ upstreamĀ versionĀ 0.32

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package YAML::XS::LibYAML;
 
2
use 5.008003;
 
3
use strict;
 
4
use warnings;
 
5
 
 
6
use XSLoader;
 
7
XSLoader::load 'YAML::XS::LibYAML';
 
8
use base 'Exporter';
 
9
 
 
10
our @EXPORT_OK = qw(Load Dump);
 
11
 
 
12
1;
 
13
 
 
14
=head1 NAME
 
15
 
 
16
YAML::XS::LibYAML - An XS Wrapper Module of libyaml
 
17
 
 
18
=cut