672c27f513dd5fe5a35e03f1500308b841e53a97
[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::InflateColumn
8             DBIx::Class::SQL::OrderBy
9             DBIx::Class::SQL::Abstract
10             DBIx::Class::PK
11             DBIx::Class::Table
12             DBIx::Class::SQL
13             DBIx::Class::DB
14             DBIx::Class::Exception
15             DBIx::Class::AccessorGroup/;
16
17 1;
18
19 =head1 NAME 
20
21 DBIx::Class::Core - Core set of DBIx::Class modules.
22
23 =head1 DESCRIPTION
24
25 This class just inherits from the various modules that makes 
26 up the Class::DBI  core features.
27
28
29 =head1 AUTHORS
30
31 Matt S. Trout <perl-stuff@trout.me.uk>
32
33 =head1 LICENSE
34
35 You may distribute this code under the same terms as Perl itself.
36
37 =cut
38