diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2012-10-15 13:45:46 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2012-10-15 13:45:46 +0200 |
commit | 983549a1b9afe8ae8688849b032840711d02ae12 (patch) | |
tree | 68476000e2cbe6f3827b545eb3476c57975a8531 /src/lib/VSDXMLParserBase.h | |
parent | 20ebb45682e425b77a95e88e7cd80992a1f369fc (diff) |
addShapeId when shapes document order is their rendering order
Diffstat (limited to 'src/lib/VSDXMLParserBase.h')
-rw-r--r-- | src/lib/VSDXMLParserBase.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/VSDXMLParserBase.h b/src/lib/VSDXMLParserBase.h index c5a127a..9f6f713 100644 --- a/src/lib/VSDXMLParserBase.h +++ b/src/lib/VSDXMLParserBase.h @@ -31,6 +31,7 @@ #define __VSDXMLPARSERBASE_H__ #include <map> +#include <stack> #include <string> #include "VSDXMLHelper.h" #include "VSDCharacterList.h" @@ -74,6 +75,7 @@ protected: std::vector<VSDParagraphList *> m_paraListVector; VSDShapeList m_shapeList; WPXBinaryData m_currentBinaryData; + std::stack<VSDShape> m_shapeStack; // Helper functions |