Refactored include and exclude filters
This commit is contained in:
24
tests/t00039/t00039.cc
Normal file
24
tests/t00039/t00039.cc
Normal file
@@ -0,0 +1,24 @@
|
||||
namespace clanguml::t00039 {
|
||||
struct B {
|
||||
};
|
||||
|
||||
namespace ns1 {
|
||||
struct BB : public B {
|
||||
};
|
||||
} // namespace ns1
|
||||
|
||||
struct A {
|
||||
};
|
||||
|
||||
struct AA : public A {
|
||||
};
|
||||
|
||||
struct AAA : public AA {
|
||||
B *b;
|
||||
};
|
||||
|
||||
namespace ns2 {
|
||||
struct AAAA : public AAA {
|
||||
};
|
||||
} // namespace ns2
|
||||
} // namespace clanguml::t00039
|
||||
Reference in New Issue
Block a user