Added dependants diagram filter

This commit is contained in:
Bartek Kryza
2022-04-18 11:59:56 +02:00
parent 74add47464
commit 11dccf1496
10 changed files with 255 additions and 95 deletions

View File

@@ -412,6 +412,9 @@ template <> struct convert<filter> {
rhs.specializations =
node["specializations"].as<decltype(rhs.specializations)>();
if (node["dependants"])
rhs.dependants = node["dependants"].as<decltype(rhs.dependants)>();
if (node["context"])
rhs.context = node["context"].as<decltype(rhs.context)>();

View File

@@ -72,6 +72,8 @@ struct filter {
std::vector<std::string> specializations;
std::vector<std::string> dependants;
std::vector<std::string> context;
std::vector<std::filesystem::path> paths;