Added option style to plantuml config section

This commit is contained in:
Bartek Kryza
2024-03-03 17:01:31 +01:00
parent c4ec8bef8a
commit 76fa811869
34 changed files with 363 additions and 128 deletions

View File

@@ -93,16 +93,16 @@ public:
void set_name(const std::string &name) { name_ = name; }
/**
* Return diagram's name.
* Return diagram element name.
*
* @return Diagram's name.
* @return Diagram element name.
*/
std::string name() const { return name_; }
/**
* Return the type name of the diagram.
* Return the type name of the diagram element.
*
* @return Diagrams type name.
* @return Diagrams element type name.
*/
virtual std::string type_name() const { return "__undefined__"; };