Files
clang-uml/tests/t30006/t30006.cc
2022-01-29 23:18:32 +01:00

29 lines
270 B
C++

namespace clanguml {
namespace t30006 {
namespace B {
struct BB {
};
}
/// \uml{note[top] Top A note.}
namespace A {
struct A1 {
B::BB *b;
};
}
namespace C {
struct CC {
};
}
/// \uml{note[bottom] Bottom A note.}
namespace A {
struct A2 {
C::CC *c;
};
}
}
}