DBIx::Class is now a component loader
[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   SQL
19   DB
20   Exception
21   AccessorGroup/);
22
23 1;
24
25 =head1 NAME 
26
27 DBIx::Class::Core - Core set of DBIx::Class modules.
28
29 =head1 DESCRIPTION
30
31 This class just inherits from the various modules that makes 
32 up the DBIx::Class core features.
33
34
35 =head1 AUTHORS
36
37 Matt S. Trout <perl-stuff@trout.me.uk>
38
39 =head1 LICENSE
40
41 You may distribute this code under the same terms as Perl itself.
42
43 =cut
44