85b9fa3b52aec3bbb998660243451000fd9238b5
[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. This makes it a convenient base
28 class for your DBIx::Class setup.
29
30 At the moment those are:
31
32 =over 4
33
34 =item L<DBIx::Class::InflateColumn>
35
36 =item L<DBIx::Class::Relationship>
37
38 =item L<DBIx::Class::PK>
39
40 =item L<DBIx::Class::Row>
41
42 =item L<DBIx::Class::Table>
43
44 =item L<DBIx::Class::Exception>
45
46 =item L<DBIx::Class::AccessorGroup>
47
48 =back
49
50 =head1 AUTHORS
51
52 Matt S. Trout <mst@shadowcatsystems.co.uk>
53
54 =head1 LICENSE
55
56 You may distribute this code under the same terms as Perl itself.
57
58 =cut
59