| XML-XBEL documentation | Contained in the XML-XBEL distribution. |
XML::XBEL::Separator - OOP for reading and writing XBEL separators
use XML::XBEL::Separator;
OOP for reading and writing XBEL separators
Returns an XML::XBEL::Separator object.
Delete an XBEL separator.
$Revision: 1.2 $
$Date: 2004/06/23 04:15:12 $
Aaron Straup Cope <ascope@cpan.org>
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::Separator; use base qw (XML::XBEL::base XML::XBEL::thingy XML::XBEL::serialize); # $Id: Separator.pm,v 1.2 2004/06/23 04:15:12 asc Exp $
use XML::LibXML;
sub new { my $pkg = shift; my $root = XML::LibXML::Element->new("separator"); my $self = bless {'__root' => $root }, $pkg; return $self; }
# Defined in XML::XBEL::thingy
# Defined in XML::XBEL::serialize
# Defined in XML::XBEL::serialize
# Defined in XML::XBEL::serialize
return 1;