Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1.  
  2. my.get(5)->show_data();
  3. my.set(5, new Point());
  4. my.set(9, new Section());
  5. my.get(5)->show_data();
  6. my.get();
  7. cout << endl;
  8. my.Delete(4);
  9. my.get();
  10. cout << endl;
  11. Point *z = new Point(1, 1);
  12. my.Add(z);
  13. my.get();
  14. my.finder(z);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement