Refactored relationship and scope filter types

This commit is contained in:
Bartek Kryza
2022-03-29 18:39:03 +02:00
parent e7d40537b1
commit 825bd33615
4 changed files with 62 additions and 19 deletions

View File

@@ -51,16 +51,16 @@ struct filter {
std::vector<std::string> elements;
// E.g.:
// - inheritance
// - inheritance/extension
// - dependency
// - instantiation
std::vector<std::string> relationships;
std::vector<common::model::relationship_t> relationships;
// E.g.:
// - public
// - protected
// - private
std::vector<std::string> scopes;
std::vector<common::model::scope_t> scopes;
std::vector<std::string> subclasses;