Added diagram type enum

This commit is contained in:
Bartek Kryza
2022-03-30 23:43:08 +02:00
parent a8b57e4eb1
commit 22483df105
8 changed files with 25 additions and 6 deletions

View File

@@ -18,17 +18,16 @@
#include "diagram.h"
#include <clang-c/CXCompilationDatabase.h>
#include <clang-c/Index.h>
#include <spdlog/spdlog.h>
#include <functional>
#include <memory>
#include <string>
#include <vector>
namespace clanguml::sequence_diagram::model {
common::model::diagram_t diagram::type() const
{
return common::model::diagram_t::kSequence;
}
std::string diagram::to_alias(const std::string &full_name) const
{
return full_name;