NAME
Data::Money::Converter::WebserviceX - WebserviceX currency conversion implementation.
VERSION
Version v0.07
SYNOPSIS
use
Data::Money;
my
$curr
= Data::Money->new(
value
=> 10,
code
=>
'USD'
);
my
$conv
= Data::Money::Converter::WebserviceX->new;
my
$newc
=
$conv
->convert(
$curr
,
'GBP'
);
$newc
->value,
"\n"
;
METHODS
convert($money, $code)
Convert $money
, which is an object of type Data::Money to currency $code
and returns an object of type Data::Money.The $code
has to be a valid three letter codes.
AUTHOR
Cory G Watson, <gphat at cpan.org>
Currently maintained by Mohammad S Anwar (MANWAR) <mohammad.anwar at yahoo.com>
REPOSITORY
https://github.com/manwar/Data-Money-Converter-WebserviceX
SEE ALSO
COPYRIGHT & LICENSE
Copyright 2010 Cory G Watson.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.