Refactored class_diagram generator to common base class template

This commit is contained in:
Bartek Kryza
2022-02-15 23:37:47 +01:00
parent 5fba937927
commit 2678a4040e
9 changed files with 316 additions and 205 deletions

View File

@@ -17,6 +17,8 @@
*/
#pragma once
#include <string>
namespace clanguml::common::model {
enum class access_t { kPublic, kProtected, kPrivate };
@@ -36,4 +38,9 @@ enum class relationship_t {
kDependency
};
std::string to_string(relationship_t r);
std::string to_string(scope_t r);
std::string to_string(access_t r);
}