Factored common cdbi rel features out into Relationship:: packages
[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
9             DBIx::Class::InflateColumn
10             DBIx::Class::SQL::OrderBy
11             DBIx::Class::SQL::Abstract
12             DBIx::Class::PK
13             DBIx::Class::Table
14             DBIx::Class::SQL
15             DBIx::Class::DB
16             DBIx::Class::Exception
17             DBIx::Class::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 Class::DBI  core features.
29
30
31 =head1 AUTHORS
32
33 Matt S. Trout <perl-stuff@trout.me.uk>
34
35 =head1 LICENSE
36
37 You may distribute this code under the same terms as Perl itself.
38
39 =cut
40