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