46 lines
478 B
C++
46 lines
478 B
C++
namespace clanguml::t00041 {
|
|
|
|
struct B { };
|
|
|
|
struct A { };
|
|
|
|
class AA : public A { };
|
|
|
|
struct R { };
|
|
|
|
struct RR;
|
|
|
|
struct D {
|
|
RR *rr;
|
|
};
|
|
|
|
struct E { };
|
|
|
|
struct F { };
|
|
|
|
namespace detail {
|
|
struct G { };
|
|
} // namespace detail
|
|
|
|
struct H { };
|
|
|
|
struct RR : public R {
|
|
E *e;
|
|
F *f;
|
|
detail::G *g;
|
|
|
|
void foo(H *h) { }
|
|
};
|
|
|
|
struct RRR : public RR { };
|
|
|
|
namespace ns1 {
|
|
struct N { };
|
|
|
|
struct NN : public N { };
|
|
|
|
struct NM : public N { };
|
|
}
|
|
|
|
} // namespace clanguml::t00041
|