You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
432 B

<?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();
}
?>