Index: /trunk/DataStore/lib/DataStore.pm
===================================================================
--- /trunk/DataStore/lib/DataStore.pm	(revision 6602)
+++ /trunk/DataStore/lib/DataStore.pm	(revision 6602)
@@ -0,0 +1,98 @@
+# Copyright (C) 2006  Joshua Hoblitt
+#
+# $Id: DataStore.pm,v 1.1 2006-03-16 20:56:41 jhoblitt Exp $
+
+package DataStore;
+
+use strict;
+use warnings;
+
+use vars qw($VERSION);
+$VERSION = '0.01';
+
+=pod
+
+=head1 NAME
+
+DataStore - client interface to a DataStore server
+
+=head1 SYNOPSIS
+
+    use DataStore;
+
+    # equivalent to:
+
+    use DataStore::File::Parser;
+    use DataStore::File;
+    use DataStore::FileSet::Parser;
+    use DataStore::FileSet;
+    use DataStore::Product;
+    use DataStore::Response;
+
+=head1 DESCRIPTION
+
+This is a convenience module so that that don't have to individualy load (C<use
+...;>) all of the common DataStore inteface modules.  Please see the
+POD of the individual modules for usage information.
+
+=head1 USAGE
+
+=head2 Import Parameters
+
+This module accepts no arguments to it's C<import> method and exports no
+I<symbols>.
+
+=head2 Methods
+
+None.
+
+=cut
+
+use DataStore::File::Parser;
+use DataStore::File;
+use DataStore::FileSet::Parser;
+use DataStore::FileSet;
+use DataStore::Product;
+use DataStore::Response;
+
+=head1 CREDITS
+
+Just me, myself, and I.
+
+=head1 SUPPORT
+
+Please contact the author directly via e-mail.
+
+=head1 AUTHOR
+
+Joshua Hoblitt <jhoblitt@cpan.org>
+
+=head1 COPYRIGHT
+
+Copyright (C) 2006  Joshua Hoblitt.  All rights reserved.
+
+This program is free software; you can redistribute it and/or modify it under
+the terms of the GNU General Public License as published by the Free Software
+Foundation; either version 2 of the License, or (at your option) any later
+version.
+
+This program is distributed in the hope that it will be useful, but WITHOUT ANY
+WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License along with
+this program; if not, write to the Free Software Foundation, Inc., 59 Temple
+Place - Suite 330, Boston, MA  02111-1307, USA.
+
+The full text of the license can be found in the LICENSE file included with
+this module, or in the L<perlgpl> Pod as supplied with Perl 5.8.1 and later.
+
+=head1 SEE ALSO
+
+L<DataStore::File::Parser>, L<DataStore::File>, L<DataStore::FileSet::Parser>, L<DataStore::FileSet>, L<DataStore::Product>, L<DataStore::Response>
+
+=cut
+
+1;
+
+__END__
