| Protocol-XMLRPC documentation | view source | Contained in the Protocol-XMLRPC distribution. |
Protocol::XMLRPC::Value - a base class for scalar values
package Protocol::XMLRPC::Value::Boolean;
use strict;
use warnings;
use base 'Protocol::XMLRPC::Value';
...
1;
This is a base class for all scalar types. Used internally.
valueHold parameter value.
newReturns new Protocol::XMLRPC::Value instance.
to_stringString representation.
Viacheslav Tykhanovskyi, vti@cpan.org.
Copyright (C) 2009, Viacheslav Tykhanovskyi.
This program is free software, you can redistribute it and/or modify it under the same terms as Perl 5.10.
| Protocol-XMLRPC documentation | view source | Contained in the Protocol-XMLRPC distribution. |