X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Fipdf.h;fp=src%2Fipdf.h;h=633c8ef12c2dc3da64681f61f56e5738c53f2717;hp=f9d3a966dc8fc9752bfb43468c2f6ee2ce172966;hb=3172dd5af487e0f8a6e5cd5439dea594b9cbd7c9;hpb=67fbce330b046b1f0d63222f04d83410dc1b2faa diff --git a/src/ipdf.h b/src/ipdf.h index f9d3a96..633c8ef 100644 --- a/src/ipdf.h +++ b/src/ipdf.h @@ -6,7 +6,7 @@ #include "bezier.h" #include "rect.h" -#include "group.h" +#include "path.h" namespace IPDF { @@ -26,7 +26,7 @@ namespace IPDF RECT_FILLED, RECT_OUTLINE, BEZIER, - GROUP, + PATH, NUMBER_OF_OBJECT_TYPES } ObjectType; @@ -37,7 +37,7 @@ namespace IPDF CT_OBJBOUNDS, CT_OBJINDICES, CT_OBJBEZIERS, - CT_OBJGROUPS + CT_OBJPATHS }; struct Objects @@ -49,8 +49,8 @@ namespace IPDF std::vector data_indices; /** Used by BEZIER only **/ std::vector beziers; // bezier curves - look up by data_indices - /** Used by GROUP only **/ - std::vector groups; + /** Used by PATH only **/ + std::vector paths; }; class View;