Updated main docs, altered mail address in POD for 0.01
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / CDBICompat.pm
1 package DBIx::Class::CDBICompat;
2
3 use strict;
4 use warnings;
5 use base qw/DBIx::Class/;
6
7 __PACKAGE__->load_own_components(qw/
8   Constraints
9   Triggers
10   ReadOnly
11   GetSet
12   LiveObjectIndex
13   AttributeAPI
14   Stringify
15   DestroyWarning
16   Constructor
17   AccessorMapping
18   ColumnCase
19   MightHave
20   HasMany
21   HasA
22   LazyLoading
23   AutoUpdate
24   TempColumns
25   Retrieve
26   ColumnGroups
27   ImaDBI/);
28
29             #DBIx::Class::ObjIndexStubs
30 1;
31
32 =head1 NAME 
33
34 DBIx::Class::CDBICompat - Class::DBI Compatability layer.
35
36 =head1 DESCRIPTION
37
38 This class just inherits from the various modules that makes 
39 up the Class::DBI compability layer.
40
41
42 =head1 AUTHORS
43
44 Matt S. Trout <mst@shadowcatsystems.co.uk>
45
46 =head1 LICENSE
47
48 You may distribute this code under the same terms as Perl itself.
49
50 =cut
51