mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-05 23:09:02 +00:00
32 lines
No EOL
546 B
PHP
32 lines
No EOL
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;
|
|
}
|
|
}
|
|
?>
|