X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2FWWW%2FOpenSearch%2FImage.pm;fp=lib%2FWWW%2FOpenSearch%2FImage.pm;h=01dafe4e9d5d0af93d27a266557498582abed23f;hb=1fc70f0d6badbef9bb483990d761d1446d52cbb2;hp=0000000000000000000000000000000000000000;hpb=ec50391b25e981b1b9bae8e42e03c0fc9c218845;p=libwww-opensearch-perl.git diff --git a/lib/WWW/OpenSearch/Image.pm b/lib/WWW/OpenSearch/Image.pm new file mode 100644 index 0000000..01dafe4 --- /dev/null +++ b/lib/WWW/OpenSearch/Image.pm @@ -0,0 +1,55 @@ +package WWW::OpenSearch::Image; + +use strict; +use warnings; + +use base qw( Class::Accessor::Fast ); + +__PACKAGE__->mk_accessors( qw( height width type url ) ); + +=head1 NAME + +WWW::OpenSearch::Image - Object to represent an image + +=head1 SYNOPSIS + +=head1 DESCRIPTION + +=head1 CONSTRUCTOR + +=head2 new( [%options] ) + +=head1 ACCESSORS + +=over 4 + +=item * height + +=item * width + +=item * type + +=item * url + +=back + +=head1 AUTHOR + +=over 4 + +=item * Tatsuhiko Miyagawa Emiyagawa@bulknews.netE + +=item * Brian Cassidy Ebricas@cpan.orgE + +=back + +=head1 COPYRIGHT AND LICENSE + +Copyright 2007 by Tatsuhiko Miyagawa and Brian Cassidy + +This library is free software; you can redistribute it and/or modify +it under the same terms as Perl itself. + +=cut + +1;