mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-11 17:59:03 +00:00
32 lines
546 B
PHP
32 lines
546 B
PHP
|
<?php
|
||
|
abstract class Node {
|
||
|
/*---------------------------
|
||
|
This class provides basic functionality common to nodes.
|
||
|
|
||
|
Every node has an id and a parent.
|
||
|
---------------------------*/
|
||
|
|
||
|
protected $id;
|
||
|
protected $parent;
|
||
|
|
||
|
function Node() {
|
||
|
// dummy constructor
|
||
|
}
|
||
|
|
||
|
final function getID() {
|
||
|
return $this->id;
|
||
|
}
|
||
|
|
||
|
final function getParent() {
|
||
|
return $this->parent;
|
||
|
}
|
||
|
|
||
|
final function setID($id) {
|
||
|
$this->id = $id;
|
||
|
}
|
||
|
|
||
|
final function setParent($p) {
|
||
|
$this->parent = $p;
|
||
|
}
|
||
|
}
|
||
|
?>
|