X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Fipdf.h;h=968a3edc80f90ee074d9ad5a0bd1b4688f1e1d0f;hp=ff31533e5b452297f8f83b27698ca5c9415b8ae2;hb=d83560835237d360f6d12776435e91676c8ab45f;hpb=813591a7d8a7364003233939f52b0031f3a40d20 diff --git a/src/ipdf.h b/src/ipdf.h index ff31533..968a3ed 100644 --- a/src/ipdf.h +++ b/src/ipdf.h @@ -56,6 +56,8 @@ namespace IPDF struct Group { + unsigned start; + unsigned end; Colour shading; }; @@ -64,14 +66,12 @@ namespace IPDF /** Used by all objects **/ std::vector types; // types of objects std::vector bounds; // rectangle bounds of objects - - /** Used by BEZIER to identify data position in relevant vector **/ + /** Used by BEZIER and GROUP to identify data position in relevant vector **/ std::vector data_indices; - /** Used by BEZIER only **/ std::vector beziers; // bezier curves - look up by data_indices - - std::vector > groups; + /** Used by GROUP only **/ + std::vector groups; }; class View;