00001 /* 00002 * $Id: dsProcessingInstruction.h,v 1.2 2003/02/13 14:37:24 dsamersoff Exp $ 00003 */ 00004 #ifndef dsProcessingInstruction_h 00005 #define dsProcessingInstruction_h 00006 00007 #include <dsNode.h> 00008 00009 class dsProcessingInstruction : public dsNode 00010 { 00011 public: 00012 DOMString target() { return nodeName(); } 00013 DOMString data() { return nodeValue(); } 00014 00015 dsProcessingInstruction(dsDocument *owner, DOMString target, DOMString data); 00016 dsProcessingInstruction(dsDocument *owner, DOMString target); 00017 00018 }; 00019 00020 #endif