Skeleton class for starting the back-compat layer
[dbsrgits/SQL-Abstract-2.0-ish.git] / lib / SQL / Abstract / Compat.pm
CommitLineData
0bcf772f 1use MooseX::Declare;
2
3class SQL::Abstract::Compat {
4}
5
6=head1 NAME
7
8SQL::Abstract::Compant - compatibility layer for SQL::Abstrct v 1.xx
9
10=head1 DESCRIPTION
11
12This class attempts to maintain the original behaviour of version 1 of
13SQL::Abstract. It does this by internally converting to an AST and then using
14the standard AST visitor.
15
16If so desired, you can get hold of this transformed AST somehow. This is aimed
17at libraries such as L<DBIx::Class> that use SQL::Abstract-style arrays or
18hashes as part of their public interface.
19
20=head1 AUTHOR
21
22Ash Berlin C<< <ash@cpan.org> >>
23
24=cut
25
261;