00001 #ifndef DEFAULT_H 00002 #define DEFAULT_H 00003 #include "XMLMarker.h" 00004 /* 00005 The default element does nothing and is called when some element in the 00006 parsed file are not reconized 00007 */ 00008 class Default:public XMLMarker{ 00009 public: 00010 Default(XMLMarker *,QString nsp,QString nom,QXmlAttributes xml); 00011 virtual void characters(QString s); 00012 virtual bool endXMLMarker(); 00013 00014 }; 00015 #endif
1.3.6