Krita Source Code Documentation
Loading...
Searching...
No Matches
KisAslXmlParser Class Reference

#include <kis_asl_xml_parser.h>

Public Member Functions

void parseXML (const QDomDocument &doc, KisAslObjectCatcher &catcher)
 

Detailed Description

Definition at line 15 of file kis_asl_xml_parser.h.

Member Function Documentation

◆ parseXML()

void KisAslXmlParser::parseXML ( const QDomDocument & doc,
KisAslObjectCatcher & catcher )

Definition at line 788 of file kis_asl_xml_parser.cpp.

789{
790 QDomElement root = doc.documentElement();
791 if (root.tagName() != "asl") {
792 return;
793 }
794
795 QDomNode child = root.firstChild();
796 while (!child.isNull()) {
797 Private::parseElement(child.toElement(), "", catcher);
798 child = child.nextSibling();
799 }
800}
void parseElement(const QDomElement &el, QIODevice &device, bool forceTypeInfo=false)

References Private::parseElement().


The documentation for this class was generated from the following files: