33 lines
347 B
C++
33 lines
347 B
C++
namespace clanguml::t00043 {
|
|
|
|
namespace dependants {
|
|
struct A {
|
|
};
|
|
|
|
struct B {
|
|
void b(A *a) { }
|
|
};
|
|
|
|
struct BB {
|
|
void bb(A *a) { }
|
|
};
|
|
|
|
struct C {
|
|
void c(B *b) { }
|
|
};
|
|
|
|
struct D {
|
|
void d(C *c) { }
|
|
void dd(BB *bb) { }
|
|
};
|
|
|
|
struct E {
|
|
void e(D *d) { }
|
|
};
|
|
|
|
struct F {
|
|
};
|
|
} // namespace dependants
|
|
|
|
} // namespace clanguml::t00043
|