-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathnanodicom.php
31 lines (28 loc) · 942 Bytes
/
nanodicom.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
/**
* nanodicom.php file
*
* @package Nanodicom
* @category Base
* @author Nano Documet <[email protected]>
* @version 1.3.1
* @copyright (c) 2010-2011
* @license http://www.opensource.org/licenses/mit-license.php MIT-license
*/
// Set the full path to the current folder
define('NANODICOMROOT', realpath(dirname(__FILE__)).DIRECTORY_SEPARATOR);
define('NANODICOMCOREPATH', realpath(dirname(__FILE__)).DIRECTORY_SEPARATOR.'nanodicom'.DIRECTORY_SEPARATOR);
// Require the core class
require_once NANODICOMCOREPATH.'core.php';
/**
* abstract Nanodicom class.
*
* All tools extend this class. Simple wrapper for Core class.
* @package Nanodicom
* @category Base
* @author Nano Documet <[email protected]>
* @version 1.3.1
* @copyright (c) 2010-2011
* @license http://www.opensource.org/licenses/mit-license.php MIT-license
*/
abstract class Nanodicom extends Nanodicom_Core {}