The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Business::CPI::Base::Cart;
# ABSTRACT: General implementation of Cart role
use utf8;
use Moo;
with 'Business::CPI::Role::Cart';

our $VERSION = '0.922'; # VERSION

1;

__END__

=pod

=encoding UTF-8

=head1 NAME

Business::CPI::Base::Cart - General implementation of Cart role

=head1 VERSION

version 0.922

=head1 DESCRIPTION

This is the most generic implementation of the L<Business::CPI::Role::Cart>
role. If your driver needs something more specific, it can create a new class
which uses L<< Cart | Business::CPI::Role::Cart >>.

=head1 SEE ALSO

L<Business::CPI::Role::Cart>

=head1 AUTHOR

André Walker <andre@andrewalker.net>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by André Walker.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut