git-cpan-module: SOAP-WSDL git-cpan-version: 2.00_01 git-cpan-authorid: MKUTTER git-cpan-file: authors/id/M/MK/MKUTTER/SOAP-WSDL-2.00_01.tar.gz
20 lines
506 B
Perl
20 lines
506 B
Perl
#!/usr/bin/perl
|
|
package MyComplexType;
|
|
use strict;
|
|
use Class::Std::Storable;
|
|
use lib '../../lib';
|
|
use SOAP::WSDL::XSD::Typelib::ComplexType;
|
|
use base ('SOAP::WSDL::XSD::Typelib::ComplexType');
|
|
|
|
my %MyTestName_of; # no :ATTR - _factory takes care of
|
|
|
|
__PACKAGE__->_factory(
|
|
[ qw(MyTestName) ], # order
|
|
{ MyTestName => \%MyTestName_of }, # attribute lookup map
|
|
{ MyTestName => 'MyElement' } # class name lookup map
|
|
);
|
|
|
|
sub get_xmlns { 'urn:Test' };
|
|
|
|
1;
|