Imported Upstream version 0.11
[libwww-opensearch-perl.git] / lib / WWW / OpenSearch / Query.pm
diff --git a/lib/WWW/OpenSearch/Query.pm b/lib/WWW/OpenSearch/Query.pm
new file mode 100644 (file)
index 0000000..b75ba77
--- /dev/null
@@ -0,0 +1,51 @@
+package WWW::OpenSearch::Query;
+
+use strict;
+use warnings;
+
+use base qw( Class::Accessor::Fast );
+
+__PACKAGE__->mk_accessors( qw( role searchTerms ) );
+
+=head1 NAME
+
+WWW::OpenSearch::Query - Object to represent a sample query
+
+=head1 SYNOPSIS
+
+=head1 DESCRIPTION
+
+=head1 CONSTRUCTOR
+
+=head2 new( [%options] )
+
+=head1 ACCESSORS
+
+=over 4
+
+=item * role
+
+=item * searchTerms
+
+=back
+
+=head1 AUTHOR
+
+=over 4
+
+=item * Tatsuhiko Miyagawa E<lt>miyagawa@bulknews.netE<gt>
+
+=item * Brian Cassidy E<lt>bricas@cpan.orgE<gt>
+
+=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;