basic pod stubs for everything but the CDBI compat layer.
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Core.pm
1 package DBIx::Class::Core;
2
3 use strict;
4 use warnings;
5
6 use base qw/DBIx::Class::Relationship
7             DBIx::Class::SQL::OrderBy
8             DBIx::Class::SQL::Abstract
9             DBIx::Class::PK
10             DBIx::Class::Table
11             DBIx::Class::SQL
12             DBIx::Class::DB
13             DBIx::Class::AccessorGroup/;
14
15 1;
16
17 =head1 NAME 
18
19 DBIx::Class::Core - Core set of DBIx::Class modules.
20
21 =head1 DESCRIPTION
22
23 This class just inherits from the various modules that makes 
24 up the Class::DBI  core features.
25
26
27 =head1 AUTHORS
28
29 Matt S. Trout <perl-stuff@trout.me.uk>
30
31 =head1 LICENSE
32
33 You may distribute this code under the same terms as Perl itself.
34
35 =cut
36