. */ /** * Doctrine_Node_MaterializedPath_LevelOrderIterator * * @package Doctrine * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @category Object Relational Mapping * @link www.phpdoctrine.com * @since 1.0 * @version $Revision$ * @author Joe Simms */ class Doctrine_Node_MaterializedPath_LevelOrderIterator implements Iterator { private $topNode = null; private $curNode = null; public function __construct($node, $opts) { throw new Doctrine_Exception('Not yet implemented'); } public function rewind() { throw new Doctrine_Exception('Not yet implemented'); } public function valid() { throw new Doctrine_Exception('Not yet implemented'); } public function current() { throw new Doctrine_Exception('Not yet implemented'); } public function key() { throw new Doctrine_Exception('Not yet implemented'); } public function next() { throw new Doctrine_Exception('Not yet implemented'); } }