Added generation of package diagrams from directory structure instead of namespaces

This commit is contained in:
Bartek Kryza
2023-05-26 21:05:28 +02:00
parent c3dcac72da
commit 467c021e17
11 changed files with 248 additions and 32 deletions

View File

@@ -251,10 +251,10 @@ bool diagram::add_class_fs(
const auto base_name = c->name();
const auto full_name = c->full_name(false);
const auto id = c->id();
auto &cc = *c;
auto cc = std::ref(*c);
if (add_element(parent_path, std::move(c))) {
classes_.push_back(std::ref(cc));
classes_.push_back(cc);
return true;
}
else {