Net::Delicious::Export - base class for exporting Net::Delicious thingies


Net-Delicious-Export documentation Contained in the Net-Delicious-Export distribution.

Index


Code Index:

NAME

Top

Net::Delicious::Export - base class for exporting Net::Delicious thingies

SYNOPSIS

Top

 Ceci n'est pas une boite noire.

DESCRIPTION

Top

Base class for exporting Net::Delicious thingies

This package subclasses XML::SAX::Base.

PACKAGE METHODS

Top

__PACKAGE__->new(%args)

Valid arguments are anything you can pass a XML::SAX::Base constructor.

Returns a Net::Delicious::Export object, Woot!

VERSION

Top

1.2

DATE

Top

$Date: 2005/09/29 13:22:57 $

AUTHOR

Top

Aaron Straup Cope <ascope@cpan.org>

SEE ALSO

Top

XML::SAX

LICENSE

Top

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;