| XML-XBEL documentation | Contained in the XML-XBEL distribution. |
XML::XBEL::serialize - private methods for serializing XBEL thingies.
None.
Private methods for serializing XBEL thingies.
$Revision: 1.3 $
$Date: 2004/06/23 06:30:21 $
Aaron Straup Cope <ascope@cpan.org>
<XML::XBEL>
Copyright (c) 2004 Aaron Straup Cope. All Rights Reserved.
This is free software, you may use it and distribute it under the same terms as Perl itself.
| XML-XBEL documentation | Contained in the XML-XBEL distribution. |
use strict; package XML::XBEL::serialize;
# $Id: serialize.pm,v 1.3 2004/06/23 06:30:21 asc Exp $ sub toString { my $self = shift; $self->{'__root'}->toString(@_); } sub toFile { my $self = shift; $self->{'__root'}->toFile(@_); } sub toFH { my $self = shift; $self->{'__root'}->toFH(@_); }
return 1;