| Net-Delicious-Export documentation | Contained in the Net-Delicious-Export distribution. |
Net::Delicious::Export - base class for exporting Net::Delicious thingies
Ceci n'est pas une boite noire.
Base class for exporting Net::Delicious thingies
This package subclasses XML::SAX::Base.
Valid arguments are anything you can pass a XML::SAX::Base constructor.
Returns a Net::Delicious::Export object, Woot!
1.2
$Date: 2005/09/29 13:22:57 $
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.
| Net-Delicious-Export documentation | Contained in the Net-Delicious-Export distribution. |
use strict; package Net::Delicious::Export; use base qw (XML::SAX::Base); # $Id: Export.pm,v 1.4 2005/09/29 13:22:57 asc Exp $
$Net::Delicious::Export::VERSION = '1.2';
sub new { my $pkg = shift; return $pkg->SUPER::new(@_); }
return 1;