Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. VectorGraphic::~VectorGraphic(){
  2. for (VectorGraphic::const_iterator i = this->begin(); i != this->end(); i++){
  3. for (GraphicElement::iterator j = i->at.begin(); j != i->end(); j++){
  4. delete *i->at(j);
  5. }
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement