WWW::KodakGallery - A module to interact with the Kodakgallery website


WWW-Ofoto documentation Contained in the WWW-Ofoto distribution.

Index


Code Index:

NAME

Top

WWW::KodakGallery - A module to interact with the Kodakgallery website

DESCRIPTION

Top

This module provides a basic interface to the KodakGallery website (http://wwww.kodakgallery.com/). It simply subclasses the WWW::Ofoto module, which provides all the functionality. See WWW::Ofoto for documentation. You should be able to subsitute KodakGallery for Ofoto. Or, you could just use the WWW::Ofoto directly; they are interechangable.

SEE ALSO

Top

The WWW::Ofoto module.

AUTHOR

Top

Mark Grimes, <mgrimes@cpan.org>

COPYRIGHT AND LICENSE

Top


WWW-Ofoto documentation Contained in the WWW-Ofoto distribution.

package WWW::KodakGallery;

###########################################################################
# WWW::KodakGallery
# Mark Grimes
# $Id: KodakGallery.pm,v 1.4 2007/05/04 18:26:05 mgrimes Exp $
#
# A perl module to interact with the ofoto website.
# Copyright (c) 2005  (Mark Grimes).
# All rights reserved. This program is free software; you can redistribute
# it and/or modify it under the same terms as Perl itself.
#
# Formatted with tabstops at 4
#
###########################################################################

use strict;
use warnings;

use base qw(WWW::Ofoto);

our $VERSION = '1.28';

1;

__END__