Advertisement
Guest User

Untitled

a guest
Nov 26th, 2015
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include "myclass.h"
  2.  
  3. class myclass;
  4. class coords {
  5.     coords(myclass*) {
  6.         doSomeStuff();
  7.     }
  8. }
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15. #include "coords.h"
  16. class myclass {
  17.     myclass(coords) {
  18.         doanotherStuff();
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement