Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #pragma once
- struct A;
- #include "B.h"
- struct A {
- B *b;
- };
- ...
- #pragma once
- struct B;
- #include "A.h"
- struct B {
- A *a;
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement