00001 /* 00002 Copyright 1996-2001 00003 Simon Whiteside 00004 00005 $Id: skXMLElement_h-source.html,v 1.17 2001/07/05 09:56:09 sdw Exp $ 00006 */ 00007 #ifndef skXMLELEMENT_H 00008 #define skXMLELEMENT_H 00009 00010 #include "skString.h" 00011 #include "dom/DOM_Element.hpp" 00012 #include "dom/DOM_Document.hpp" 00013 00017 class skXMLElement : public DOM_Element { 00018 public: 00022 inline skXMLElement(DOM_Element owner,const skString& tagname) 00023 : DOM_Element(owner.getOwnerDocument().createElement(DOMString((const char *)tagname))){ 00024 } 00025 }; 00026 00027 #endif