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