Nanodicom.php 940 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * nanodicom.php file
  4. *
  5. * @package Nanodicom
  6. * @category Base
  7. * @author Nano Documet <nanodocumet@gmail.com>
  8. * @version 1.3.1
  9. * @copyright (c) 2010-2011
  10. * @license http://www.opensource.org/licenses/mit-license.php MIT-license
  11. */
  12. // Set the full path to the current folder
  13. define('NANODICOMROOT', realpath(dirname(__FILE__)).DIRECTORY_SEPARATOR);
  14. define('NANODICOMCOREPATH', realpath(dirname(__FILE__)).DIRECTORY_SEPARATOR.'nanodicom'.DIRECTORY_SEPARATOR);
  15. // Require the core class
  16. require_once NANODICOMCOREPATH.'core.php';
  17. /**
  18. * abstract Nanodicom class.
  19. *
  20. * All tools extend this class. Simple wrapper for Core class.
  21. * @package Nanodicom
  22. * @category Base
  23. * @author Nano Documet <nanodocumet@gmail.com>
  24. * @version 1.3.1
  25. * @copyright (c) 2010-2011
  26. * @license http://www.opensource.org/licenses/mit-license.php MIT-license
  27. */
  28. abstract class Nanodicom extends Nanodicom_Core {}