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