| WWW-OpenSearch documentation | Contained in the WWW-OpenSearch distribution. |
WWW::OpenSearch::Image - Object to represent an image
Copyright 2005-2010 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.
| WWW-OpenSearch documentation | Contained in the WWW-OpenSearch distribution. |
package WWW::OpenSearch::Image; use strict; use warnings; use base qw( Class::Accessor::Fast ); __PACKAGE__->mk_accessors( qw( height width type url ) );
1;