* * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, version 2.1. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * * $Id: DocumentFragment.php,v 1.2 2006-10-30 18:24:59 baron Exp $ */ include_once("Node.php"); class DocumentFragment extends Node { function DocumentFragment() { $this->Node(); $this->nodeType = DOM_DOCUMENT_FRAGMENT_NODE; } } ?>