<?php
 
 
/**
 
 * Auxiliary script used to load the interfaces required by the application.
 
 * 
 
 * @author Marius Zadara <[email protected]>
 
 * @category org.zadara.marius.logger.interfaces
 
 * @copyright (C) 2008 Marius Zadara <[email protected]>
 
 * @license GNU GPL
 
 * @package org.zadara.marius.logger
 
 */
 
 
// Event interface
 
require 'IEvent.intf.php';
 
 
// Logger interface
 
require 'ILogger.intf.php';
 
 
 
?>
 
 |