17 if (!defined(
"PSF_ENTRY_POINT"))
    18     die(
"Not a valid psf entry point");
    23     protected $Parent = NULL;
    25     function __construct($_parent = NULL)
    27         $this->Parent = $_parent;
    28         if ($_parent !== NULL)
    29             $_parent->AddChild($this);
    32     function SetParent($_parent)
    34         $this->Parent = $_parent;
    37     function GetParent($_parent)
    42     function AddChild($_child) { }
 Base class used for every single PSF object.