- Storage/DBI.pm now uses Abstract internally
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Core.pm
index 8855123..6920c51 100644 (file)
@@ -2,10 +2,42 @@ package DBIx::Class::Core;
 
 use strict;
 use warnings;
+no warnings 'qw';
 
-use base qw/DBIx::Class::PK
-            DBIx::Class::Table
-            DBIx::Class::SQL
-            DBIx::Class::DB/;
+use base qw/DBIx::Class/;
+
+__PACKAGE__->load_components(qw/
+  Relationship::Accessor
+  Relationship::CascadeActions
+  Relationship::ProxyMethods
+  Relationship
+  InflateColumn
+  #SQL::OrderBy
+  SQL::Abstract
+  PK
+  Table
+  Exception
+  AccessorGroup/);
 
 1;
+
+=head1 NAME 
+
+DBIx::Class::Core - Core set of DBIx::Class modules.
+
+=head1 DESCRIPTION
+
+This class just inherits from the various modules that makes 
+up the DBIx::Class core features.
+
+
+=head1 AUTHORS
+
+Matt S. Trout <perl-stuff@trout.me.uk>
+
+=head1 LICENSE
+
+You may distribute this code under the same terms as Perl itself.
+
+=cut
+