khanat-opennel-code/code/web/app/app_achievements/class/RenderNodeIteraor_abstract.php

21 lines
340 B
PHP
Raw Normal View History

<?php
abstract class RenderNodeIterator {
protected $nodes = array();
function getSize() {
return sizeof($this->nodes);
}
function getChild($i) {
return $this->nodes[$i];
}
function isEmpty() {
return (sizeof($this->nodes) == 0);
}
function getChildren() {
return $this->nodes;
}
}
?>