php-src/ext/spl/internal/outeriterator.inc
2005-02-08 19:10:06 +00:00

24 lines
414 B
PHP
Executable File

<?php
/** @file outeriterator.inc
* @ingroup SPL
* @brief class OuterIterator
* @author Marcus Boerger
* @date 2003 - 2005
*
* SPL - Standard PHP Library
*/
/**
* @brief Interface to access the current inner iteraor of iterator wrappers
* @author Marcus Boerger
* @version 1.0
*/
interface OuterIterator extends Iterator
{
/** @return inner iterator
*/
function getInnerIterator();
}
?>