Fixed test case with template class sequence diagram

This commit is contained in:
Bartek Kryza
2022-11-13 14:29:32 +01:00
parent a1e447966d
commit f3aec40b2a
5 changed files with 15 additions and 30 deletions

View File

@@ -26,9 +26,6 @@
namespace clanguml::sequence_diagram::model {
struct activity {
// std::uint_least64_t from_id;
// std::string from_name;
// std::string from_method_name;
common::model::diagram_element::id_t from;
std::vector<message> messages;
};

View File

@@ -28,10 +28,7 @@ namespace clanguml::sequence_diagram::model {
struct message {
message()
: from{}
// , from_method_name{}
// , from_name{}
, to{}
// , to_name{}
, message_name{}
, return_type{}
, line{}
@@ -41,19 +38,6 @@ struct message {
common::model::message_t type;
common::model::diagram_element::id_t from;
common::model::diagram_element::id_t to;
//
// /// Source participant id
// std::uint_least64_t from;
// std::string from_method_name;
//
// std::string from_name;
// // std::uint_least64_t from_usr{};
//
// /// Target participant id
// std::uint_least64_t to;
// std::string to_name;
//
// // std::int64_t to_usr{};
std::string message_name;