- Storage/DBI.pm now uses Abstract internally
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Core.pm
1 package DBIx::Class::Core;
2
3 use strict;
4 use warnings;
5 no warnings 'qw';
6
7 use base qw/DBIx::Class/;
8
9 __PACKAGE__->load_components(qw/
10   Relationship::Accessor
11   Relationship::CascadeActions
12   Relationship::ProxyMethods
13   Relationship
14   InflateColumn
15   #SQL::OrderBy
16   SQL::Abstract
17   PK
18   Table
19   Exception
20   AccessorGroup/);
21
22 1;
23
24 =head1 NAME 
25
26 DBIx::Class::Core - Core set of DBIx::Class modules.
27
28 =head1 DESCRIPTION
29
30 This class just inherits from the various modules that makes 
31 up the DBIx::Class core features.
32
33
34 =head1 AUTHORS
35
36 Matt S. Trout <perl-stuff@trout.me.uk>
37
38 =head1 LICENSE
39
40 You may distribute this code under the same terms as Perl itself.
41
42 =cut
43