Advertisement
Guest User

Untitled

a guest
Aug 6th, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. struct Vector
  2. {
  3. int x;
  4. int y;
  5.  
  6. Vector()
  7. Vector(int x, int y) : x(x), y(y) {}
  8. }
  9.  
  10. class Something
  11. {
  12. static Vector vector;
  13. }
  14.  
  15. Something::vector(5, 6); //legal?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement