Business::TPGPost - [OBSOLETE] See Business::TNTPost::NL


Business-TPGPost documentation Contained in the Business-TPGPost distribution.

Index


Code Index:

NAME

Top

Business::TPGPost - [OBSOLETE] See Business::TNTPost::NL

SYNOPSIS

Top

  use Business::TPGPost;

  my $tpg = Business::TPGPost->new();
  my $costs = $tpg->calculate(
                  country    =>'DE', 
                  weight     => 534, 
                  large      => 1, 
                  tracktrace => 1,
                  register   => 1,
                  receipt    => 1
              ) or die $Business::TPGPost::ERROR;

DESCRIPTION

Top

On 14 september 2005, TPG Post announced their new name TNT Post. Unfortunately the author of this module missed this name change and went for Business::TPGPost. On 16 october 2006, it was official, the name TPG Post was not used anymore and thus this module was doomed.

This module now is a very simple wrapper around the new Business::TNTPost::NL. Please don't accept this to work very well. Please update your scripts to use the new Business::TNTPost::NL. This module will not get updated anymore. All updates will be in Business::TNTPost::NL.

AUTHOR

Top

M. Blom, <blom@cpan.org>, http://menno.b10m.net/perl/

COPYRIGHT

Top

SEE ALSO

Top

Business::TNTPost::NL, http://www.tntpost.nl/overtntpost/nieuwspers/persberichten/2006/10/naamswijziging.aspx


Business-TPGPost documentation Contained in the Business-TPGPost distribution.

package Business::TPGPost;

use strict;
use Business::TNTPost::NL;

our $VERSION     = '0.05';
our $ERROR       = $Business::TNTPost::NL::ERROR;

sub new {
  shift; unshift @_, 'Business::TNTPost::NL';
  goto &Business::TNTPost::NL::new;
}
#################### main pod documentation begin ###################

#################### main pod documentation end ###################

1;