Imported Upstream version 0.16
[libwww-opensearch-perl.git] / lib / WWW / OpenSearch / Query.pm
1 package WWW::OpenSearch::Query;
2
3 use strict;
4 use warnings;
5
6 use base qw( Class::Accessor::Fast );
7
8 __PACKAGE__->mk_accessors( qw( role searchTerms ) );
9
10 =head1 NAME
11
12 WWW::OpenSearch::Query - Object to represent a sample query
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 * role
27
28 =item * searchTerms
29
30 =back
31
32 =head1 AUTHOR
33
34 =over 4
35
36 =item * Tatsuhiko Miyagawa E<lt>miyagawa@bulknews.netE<gt>
37
38 =item * Brian Cassidy E<lt>bricas@cpan.orgE<gt>
39
40 =back
41
42 =head1 COPYRIGHT AND LICENSE
43
44 Copyright 2005-2010 by Tatsuhiko Miyagawa and Brian Cassidy
45
46 This library is free software; you can redistribute it and/or modify
47 it under the same terms as Perl itself. 
48
49 =cut
50
51 1;