Advertisement
Guest User

Untitled

a guest
Sep 29th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #include "stdafx.h"
  2. #include "myClasses.h"
  3. /*
  4. myStruct::myStruct (int x, int y)
  5. : x_(x), y_(y)
  6. {}
  7. */
  8. myStruct::myStruct (const myStruct & r)
  9. : x_(r.getx()), y_(r.gety())
  10. {}
  11. myStruct::myStruct()
  12. : x_(0), y_(0)
  13. {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement