File Coverage

blib/lib/Text/Iconv.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Text::Iconv;
2             # @(#) $Id: Iconv.pm,v 1.10 2007/10/17 14:14:22 mxp Exp $
3             # Copyright (c) 2007 Michael Piotrowski
4              
5 2     2   2037 use strict;
  2         3  
  2         82  
6 2     2   10 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
  2         4  
  2         322  
7              
8             require Exporter;
9             require DynaLoader;
10             require AutoLoader;
11              
12             @ISA = qw(Exporter AutoLoader DynaLoader);
13             # Items to export into callers namespace by default. Note: do not export
14             # names by default without a very good reason. Use EXPORT_OK instead.
15             # Do not simply export all your public functions/methods/constants.
16             @EXPORT_OK = qw(
17             convert
18             );
19             $VERSION = '1.7';
20              
21             bootstrap Text::Iconv $VERSION;
22              
23             # Preloaded methods go here.
24              
25             # Autoload methods go after =cut, and are processed by the autosplit program.
26              
27             1;
28             __END__