27 #include "../../xml/Reader.h" 
   28 #include "../../xml/Writer.h" 
   29 #include "../../xsd/Include.h" 
   50   if(pos != std::string::npos)
 
   51     include->setSchemaLocation(reader.
getAttr(pos));
 
   61   return include.release();
 
This class models a XML reader object. 
 
virtual bool next()=0
It gets the next event to be read. 
 
void ReadAnnotated(te::xsd::Annotated *annotated, te::xml::Reader &reader)
 
TESERIALIZATIONEXPORT void Save(const te::fe::Filter *filter, te::xml::Writer &writer)
 
void ReadIdentifiable(te::xsd::Identifiable *identifiable, te::xml::Reader &reader)
 
Support for Include serialization. 
 
It models a XML Schema include. 
 
TESERIALIZATIONEXPORT te::xsd::Include * ReadInclude(te::xml::Reader &reader)
 
Utility methods for Schema serialization. 
 
virtual NodeType getNodeType() const =0
It return the type of node read. 
 
virtual std::string getElementLocalName() const =0
It returns the local part of the element name in the case of an element node. 
 
virtual std::size_t getAttrPosition(const std::string &name) const =0
It returns the attribute position. 
 
virtual std::string getAttr(const std::string &name) const =0
It returns the attribute value in the case of an element node with valid attributes. 
 
This class models a XML writer object.