package XML::TMX; # vim:sw=3:ts=3:et: use 5.004; use warnings; use strict; use Exporter (); use vars qw($VERSION @ISA @EXPORT_OK); $VERSION = '0.22'; @ISA = 'Exporter'; @EXPORT_OK = qw(); =encoding utf-8 =head1 NAME XML::TMX - Perl extensions for managing TMX files =head1 SYNOPSIS use XML::TMX; =head1 DESCRIPTION XML::TMX is the top level module. At the moment it does not contain any useful code, so check sub-modules, please. =head1 SEE ALSO XML::TMX::Writer, XML::TMX::Reader, XML::TMX::FromPO L, TMX Specification L =head1 AUTHOR Alberto Simões, Ealbie@alfarrabio.di.uminho.ptE Paulo Jorge Jesus Silva, Epaulojjs@bragatel.ptE =head1 COPYRIGHT AND LICENSE Copyright 2003-2012 by Projecto Natura This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut 1;