package XML::TMX;

# ABSTRACT: Perl extensions for managing TMX files

use 5.010;
use warnings;
use strict;

use parent 'Exporter';

our @ISA = 'Exporter';
our @EXPORT_OK = qw();

=encoding utf-8

=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.

=cut

1;

