| 
<?php
 /**
 * Page DocBlock definition
 * @package org.zadara.marius.pax
 */
 
 /**
 * Core loader.
 * This file will load all the components needed.
 *
 * @author Marius Zadara <[email protected]>
 * @category Loaders
 * @copyright (C) 2008-2009 Marius Zadara
 * @license Free for non-comercial use
 * @package org.zadara.marius.pax
 * @since 5.0
 */
 
 /**
 * @see _addInterfaces.php
 */
 require_once 'core/interfaces/_addInterfaces.php';
 
 /**
 * @see _addExceptions.php
 */
 require_once 'core/exceptions/_addExceptions.php';
 
 /**
 * @see _addClasses.php
 */
 require_once 'core/classes/_addClasses.php';
 
 /**
 * @see _addUtils.php
 */
 require_once 'core/utils/_addUtils.php';
 
 ?>
 |