504c2d97de4c8a677b3485aa3ae66c29df2b36d4
[libwww-opensearch-perl.git] / lib / WWW / OpenSearch / Image.pm
1 package WWW::OpenSearch::Image;
2
3 use strict;
4 use warnings;
5
6 use base qw( Class::Accessor::Fast );
7
8 __PACKAGE__->mk_accessors( qw( height width type url ) );
9
10 =head1 NAME
11
12 WWW::OpenSearch::Image - Object to represent an image
13
14 =head1 SYNOPSIS
15
16 =head1 DESCRIPTION
17
18 =head1 CONSTRUCTOR
19
20 =head2 new( [%options] )
21
22 =head1 ACCESSORS
23
24 =over 4
25
26 =item * height
27
28 =item * width
29
30 =item * type
31
32 =item * url
33
34 =back
35
36 =head1 AUTHOR
37
38 =over 4
39
40 =item * Tatsuhiko Miyagawa E<lt>miyagawa@bulknews.netE<gt>
41
42 =item * Brian Cassidy E<lt>bricas@cpan.orgE<gt>
43
44 =back
45
46 =head1 COPYRIGHT AND LICENSE
47
48 Copyright 2005-2009 by Tatsuhiko Miyagawa and Brian Cassidy
49
50 This library is free software; you can redistribute it and/or modify
51 it under the same terms as Perl itself. 
52
53 =cut
54
55 1;