00001 00002 00003 00004 00005
00006 #ifndef INHERITSELEMENT_H
00007 #define INHERITSELEMENT_H
00008
00009 #include "skXMLElementObject.h"
00010 #include "dom/DOM_Element.hpp"
00011
00015 class InheritsElement : public skXMLElementObject {
00016 public:
00017 InheritsElement(const skString& location,DOM_Element elem);
00018 protected:
00019 void setElement(DOM_Element elem);
00020 skXMLElementObject * createXMLElementObject(const skString& location,DOM_Element element);
00021 static void replaceInherits(DOM_Element elem);
00022 };
00023
00024 #endif