Refactored include and exclude filters

This commit is contained in:
Bartek Kryza
2022-03-27 19:32:58 +02:00
parent 6800baea55
commit 36065a7819
61 changed files with 606 additions and 307 deletions

24
tests/t00039/t00039.cc Normal file
View 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