qrlib.php 478 B

1234567891011121314151617
  1. <?php
  2. $QR_BASEDIR = dirname(__FILE__) . DIRECTORY_SEPARATOR;
  3. include $QR_BASEDIR . 'qrconst.php';
  4. include $QR_BASEDIR . 'qrconfig.php';
  5. include $QR_BASEDIR . 'qrtools.php';
  6. include $QR_BASEDIR . 'qrspec.php';
  7. include $QR_BASEDIR . 'qrimage.php';
  8. include $QR_BASEDIR . 'qrinput.php';
  9. include $QR_BASEDIR . 'qrbitstream.php';
  10. include $QR_BASEDIR . 'qrsplit.php';
  11. include $QR_BASEDIR . 'qrrscode.php';
  12. include $QR_BASEDIR . 'qrmask.php';
  13. include $QR_BASEDIR . 'qrencode.php';
  14. ?>