Lo, doth everything now use resultset_instance
[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   ResultSetInstance
16   Exception
17   AccessorGroup/);
18
19 1;
20
21 =head1 NAME 
22
23 DBIx::Class::Core - Core set of DBIx::Class modules.
24
25 =head1 DESCRIPTION
26
27 This class just inherits from the various modules that makes 
28 up the DBIx::Class core features. This makes it a convenient base
29 class for your DBIx::Class setup.
30
31 At the moment those are:
32
33 =over 4
34
35 =item L<DBIx::Class::InflateColumn>
36
37 =item L<DBIx::Class::Relationship>
38
39 =item L<DBIx::Class::PK>
40
41 =item L<DBIx::Class::Row>
42
43 =item L<DBIx::Class::Table>
44
45 =item L<DBIx::Class::Exception>
46
47 =item L<DBIx::Class::AccessorGroup>
48
49 =back
50
51 =head1 AUTHORS
52
53 Matt S. Trout <mst@shadowcatsystems.co.uk>
54
55 =head1 LICENSE
56
57 You may distribute this code under the same terms as Perl itself.
58
59 =cut
60