Changed scope_t to access_t and fixed friend access specifier handling

This commit is contained in:
Bartek Kryza
2022-03-30 23:27:46 +02:00
parent a216a81e19
commit a8b57e4eb1
30 changed files with 134 additions and 137 deletions

View File

@@ -42,14 +42,14 @@ std::string to_plantuml(relationship_t r, std::string style)
}
}
std::string to_plantuml(scope_t scope)
std::string to_plantuml(access_t scope)
{
switch (scope) {
case scope_t::kPublic:
case access_t::kPublic:
return "+";
case scope_t::kProtected:
case access_t::kProtected:
return "#";
case scope_t::kPrivate:
case access_t::kPrivate:
return "-";
default:
return "";