php-src/ext/spl/internal/outeriterator.inc

25 lines
432 B
PHP
Raw Normal View History

2004-09-26 21:21:45 +00:00
<?php
2004-10-29 20:58:58 +00:00
/** @file outeriterator.inc
2004-10-31 19:05:37 +00:00
* @ingroup SPL
2004-10-29 20:58:58 +00:00
* @brief class OuterIterator
* @author Marcus Boerger
2006-02-21 23:21:53 +00:00
* @date 2003 - 2006
2004-10-29 20:58:58 +00:00
*
* SPL - Standard PHP Library
*/
/**
* @brief Interface to access the current inner iteraor of iterator wrappers
* @author Marcus Boerger
* @version 1.0
2005-02-17 00:24:57 +00:00
* @since PHP 5.1
2004-09-26 21:21:45 +00:00
*/
interface OuterIterator extends Iterator
{
2004-10-29 20:58:58 +00:00
/** @return inner iterator
2004-09-26 21:21:45 +00:00
*/
2004-10-29 19:50:51 +00:00
function getInnerIterator();
2004-09-26 21:21:45 +00:00
}
?>