Swiftray  1.0
svgpp-parser.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <QPainterPath>
4 
5 // This class acts like a bridge from main program to svgpp,
6 // to make the svgpp compiling dependency stops at "svgpp-parser.cpp"
7 // so the compiling process will be faster
8 
9 class Document;
10 
11 namespace Parser {
12 
13  class SVGPPParser {
14  public:
16 
17  bool parse(Document *doc, QByteArray &data);
18  };
19 
20 }
Document state store for layers, shapes, document specfic settings and current view state.
Definition: document.h:19
Definition: svgpp-parser.h:13
bool parse(Document *doc, QByteArray &data)
Definition: svgpp-parser.cpp:9
SVGPPParser()
Definition: svgpp-parser.h:15
Definition: base-context.h:8