Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php5/php-5.6.6/ext/spl/internal/
Upload File :
Current File : //hdd/hdd21/main/php5/php-5.6.6/ext/spl/internal/outeriterator.inc

<?php

/** @file outeriterator.inc
 * @ingroup SPL
 * @brief class OuterIterator
 * @author  Marcus Boerger
 * @date    2003 - 2009
 *
 * SPL - Standard PHP Library
 */

/**
 * @brief   Interface to access the current inner iteraor of iterator wrappers
 * @author  Marcus Boerger
 * @version 1.0
 * @since PHP 5.1
 */
interface OuterIterator extends Iterator
{
	/** @return inner iterator
	 */
    function getInnerIterator();
}

?>