Make clear_regions and delete_region methods private (both Print & Layer), and remove from XSP.

This commit is contained in:
Y. Sapir 2014-05-25 00:10:20 +03:00
parent 85cbbed663
commit b8b8c746d9
4 changed files with 7 additions and 7 deletions

View file

@ -154,9 +154,11 @@ class Print
const BoundingBoxf3 &modobj_bbox);
void delete_object(int idx);
void clear_regions();
PrintRegion* get_region(int idx);
PrintRegion* add_region();
private:
void clear_regions();
void delete_region(int idx);
};