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