Added dependants diagram filter
This commit is contained in:
@@ -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)>();
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user