Guest User

Untitled

a guest
Aug 15th, 2015
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. //a.h
  2. struct structA {};
  3.  
  4. class B;
  5.  
  6. class A {
  7. B* a_b;
  8. bool aaa(structA var1);
  9. }
  10.  
  11. #include "b.h"
  12.  
  13. //b.h
  14. #include "a.h"
  15.  
  16. class B {
  17. bool bbb(structA var1);
  18. }
Advertisement
Add Comment
Please, Sign In to add comment