summaryrefslogtreecommitdiff
path: root/LedgerSMB/CreditCard.pm
blob: b0707cfaf98d5e8d6dd5ae730879d5aa9a20b048 (plain)
  1. #=====================================================================
  2. # LedgerSMB
  3. # Small Medium Business Accounting software
  4. # http://www.ledgersmb.org/
  5. # Copyright (C) 2006
  6. # This work contains copyrighted information from a number of sources all used
  7. # with permission.
  8. #
  9. # This file contains source code included with or based on SQL-Ledger which
  10. # is Copyright Dieter Simader and DWS Systems Inc. 2000-2005 and licensed
  11. # under the GNU General Public License version 2 or, at your option, any later
  12. # version. For a full list including contact information of contributors,
  13. # maintainers, and copyright holders, see the CONTRIBUTORS file.
  14. # POS Credit card processing-- could be extended for ecommerce
  15. package CreditCard;
  16. use LedgerSMB::CreditCard::Config;
  17. BEGIN {
  18. $gateway_module = ${Config::gateway_module};
  19. require "LedgerSMB/CreditCard/$gateway_module.pm";
  20. import $gateway_module qw(sale credit);
  21. }
  22. 1;