Added initial support for include graph diagrams

This commit is contained in:
Bartek Kryza
2022-04-10 13:32:59 +02:00
parent 46e8885c41
commit ac624c9247
23 changed files with 378 additions and 61 deletions

View File

@@ -85,4 +85,12 @@ bool diagram::should_include(
return filter_->should_include(ns, name);
}
bool diagram::should_include(const common::model::source_file &f) const
{
if (filter_.get() == nullptr)
return true;
return filter_->should_include(f);
}
}